mourningdove/htdocs/scss/components/_expand-for-mobile.scss
2026-05-24 01:03:05 +00:00

15 lines
No EOL
318 B
SCSS

// these are for elements that we want to be full width on mobile
// but no specific width in larger screens (so the grid system isn't appropriate)
// e.g., a row of buttons
@import "foundation/base";
.expand-for-mobile {
width: 100%;
}
@media #{$medium-up} {
.expand-for-mobile {
width: auto;
}
}