chore: add load more functionality, with refactored css

This commit is contained in:
Matilda Landström
2024-04-26 10:51:05 +02:00
parent 204f0f45ce
commit 7480b212e2
31 changed files with 326 additions and 169 deletions

View File

@@ -0,0 +1,10 @@
.container {
max-width: var(--max-width);
display: grid;
gap: 2rem;
}
@media screen and (min-width: 950px) {
.container {
gap: 7rem;
}
}

View File

@@ -0,0 +1,5 @@
import styles from "./container.module.css"
export default function Container({ children }: React.PropsWithChildren) {
return <section className={styles.container}>{children}</section>
}