This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Breakpoints | |
| $small: new-breakpoint(max-width 767px 6); | |
| $medium-only: new-breakpoint(min-width 768px max-width 1023px 12); | |
| $medium-up: new-breakpoint(min-width 768px 12); | |
| $large-only: new-breakpoint(min-width 1024px max-width 1279px 12); | |
| $large-up: new-breakpoint(min-width 1024px 12); | |
| $xlarge-only: new-breakpoint(min-width 1280px max-width 1799px 12); | |
| $xlarge-up: new-breakpoint(min-width 1280px 12); | |
| $xxlarge: new-breakpoint(min-width 1800px 12); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Alerts | |
| @include alert-variant($background, $border, $text-color); | |
| // Background Variant | |
| @include bg-variant($parent, $color); | |
| // Border Radius | |
| @include border-top-radius($radius); | |
| @include border-right-radius($radius); | |
| @include border-bottom-radius($radius); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin breakpoint($point) | |
| @if $point == lg | |
| @media (min-width: 1200px) | |
| @content | |
| @else if $point == md | |
| @media (min-width: 992px) and (max-width: 1199px) | |
| @content | |
| @else if $point == sm |
NewerOlder