Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_display.scss 519B

1234567891011121314151617181920212223242526
  1. // stylelint-disable declaration-no-important
  2. //
  3. // Utilities for common `display` values
  4. //
  5. @each $breakpoint in map-keys($grid-breakpoints) {
  6. @include media-breakpoint-up($breakpoint) {
  7. $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
  8. @each $value in $displays {
  9. .d#{$infix}-#{$value} { display: $value !important; }
  10. }
  11. }
  12. }
  13. //
  14. // Utilities for toggling `display` in print
  15. //
  16. @media print {
  17. @each $value in $displays {
  18. .d-print-#{$value} { display: $value !important; }
  19. }
  20. }