mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
4778190d78
— Moves print display utils to display utils file — Removes all other .hidden- utils — Expands on .invisible and it's mixin to provide options for visibility: visible and visibility: hidden
11 lines
121 B
SCSS
11 lines
121 B
SCSS
//
|
|
// Visibility utilities
|
|
//
|
|
|
|
.visible {
|
|
@include invisible(visible);
|
|
}
|
|
|
|
.invisible {
|
|
@include invisible(hidden);
|
|
}
|