missed a file in the last commit
This commit is contained in:
parent
de8fee50fd
commit
635fb1510c
1 changed files with 21 additions and 0 deletions
|
@ -11,3 +11,24 @@ export interface Props extends LayoutProps {}
|
|||
<slot />
|
||||
</main>
|
||||
</Layout>
|
||||
|
||||
<style>
|
||||
.flex-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
gap: 2.5rem;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
max-width: 55rem;
|
||||
}
|
||||
|
||||
@media (min-width: 50em) {
|
||||
.wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 12rem 1fr;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue