Created
February 12, 2019 14:58
-
-
Save sebastiano-guerriero/9c9c6a6b93a18eec27eb00feb4602d60 to your computer and use it in GitHub Desktop.
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
| @include breakpoint(xs) { | |
| .display--xs { | |
| display: block !important; | |
| } | |
| .hide--xs { | |
| display: none !important; | |
| } | |
| } | |
| @include breakpoint(sm) { | |
| .display--sm { | |
| display: block !important; | |
| } | |
| .hide--sm { | |
| display: none !important; | |
| } | |
| } | |
| @include breakpoint(md) { | |
| .display--md { | |
| display: block !important; | |
| } | |
| .hide--md { | |
| display: none !important; | |
| } | |
| } | |
| @include breakpoint(lg) { | |
| .display--lg { | |
| display: block !important; | |
| } | |
| .hide--lg { | |
| display: none !important; | |
| } | |
| } | |
| @include breakpoint(xl) { | |
| .display--xl { | |
| display: block !important; | |
| } | |
| .hide--xl { | |
| display: none !important; | |
| } | |
| } | |
| // component code - not included in the _visibility.scss file | |
| .component div { | |
| display: inline-block; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment