chore: add load more functionality, with refactored css
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
.container {
|
||||
max-width: var(--max-width);
|
||||
display: grid;
|
||||
gap: 2rem;
|
||||
}
|
||||
@media screen and (min-width: 950px) {
|
||||
.container {
|
||||
gap: 7rem;
|
||||
}
|
||||
}
|
||||
5
components/MyPages/Blocks/Stays/Container/index.tsx
Normal file
5
components/MyPages/Blocks/Stays/Container/index.tsx
Normal 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>
|
||||
}
|
||||
Reference in New Issue
Block a user