@tolokoban/ui
Version:
React components with theme
32 lines (27 loc) • 467 B
CSS
.fullwidth {
inline-size: 100%;
box-sizing: border-box;
}
.fullheight {
block-size: 100%;
box-sizing: border-box;
}
.fullsize {
composes: fullwidth fullheight;
}
@media (orientation: landscape) {
.fullwide {
composes: fullwidth;
}
.fullnarrow {
composes: fullheight;
}
}
@media (orientation: portrait) {
.fullwide {
composes: fullheight;
}
.fullnarrow {
composes: fullwidth;
}
}