mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-03-02 16:21:26 +01:00
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
27 lines
519 B
SCSS
27 lines
519 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
//
|
|
// Utilities for common `display` values
|
|
//
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-up($breakpoint) {
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
@each $value in $displays {
|
|
.d#{$infix}-#{$value} { display: $value !important; }
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Utilities for toggling `display` in print
|
|
//
|
|
|
|
@media print {
|
|
@each $value in $displays {
|
|
.d-print-#{$value} { display: $value !important; }
|
|
}
|
|
}
|