telegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchat
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.
21 lines
503 B
21 lines
503 B
// Responsive utilities |
|
|
|
// |
|
// More easily include all the states for responsive-utilities.less. |
|
// [converter] $parent hack |
|
@mixin responsive-visibility($parent) { |
|
#{$parent} { |
|
display: block !important; |
|
} |
|
table#{$parent} { display: table; } |
|
tr#{$parent} { display: table-row !important; } |
|
th#{$parent}, |
|
td#{$parent} { display: table-cell !important; } |
|
} |
|
|
|
// [converter] $parent hack |
|
@mixin responsive-invisibility($parent) { |
|
#{$parent} { |
|
display: none !important; |
|
} |
|
}
|
|
|