mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
19 lines
393 B
CSS
19 lines
393 B
CSS
main {
|
|
display: flex;
|
|
flex-direction: __styled-jsx-placeholder;
|
|
justify-content: space-between;
|
|
margin-bottom: var(--geist-gap-double);
|
|
}
|
|
div {
|
|
width: 100%;
|
|
max-width: calc(100% - __styled-jsx-placeholderpx - var(--geist-gap-double));
|
|
}
|
|
@media (max-width: __styled-jsx-placeholderpx) {
|
|
main {
|
|
flex-direction: __styled-jsx-placeholder;
|
|
}
|
|
div {
|
|
max-width: unset;
|
|
}
|
|
}
|