38 lines
543 B
SCSS
38 lines
543 B
SCSS
|
/**
|
||
|
* Hides an element.
|
||
|
*/
|
||
|
.hide {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Shows an element.
|
||
|
*/
|
||
|
.show {
|
||
|
display: block !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Shows an inline element.
|
||
|
*/
|
||
|
.show-inline {
|
||
|
display: inline-block !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Shows as a list item
|
||
|
**/
|
||
|
.show-list-item {
|
||
|
display: list-item !important;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Shows a flex element.
|
||
|
*/
|
||
|
.show-flex {
|
||
|
display: -webkit-box !important;
|
||
|
display: -moz-box !important;
|
||
|
display: -ms-flexbox !important;
|
||
|
display: -webkit-flex !important;
|
||
|
display: flex !important;
|
||
|
}
|