mourningdove/htdocs/scss/components/_expand-for-mobile.scss

15 lines
318 B
SCSS
Raw Normal View History

2026-05-24 01:03:05 +00:00
// 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;
}
}