0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/utilities/_visibility.scss
Mark Otto 4778190d78 Drop the .hidden and .visible classes, save for the print ones
— 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
2017-03-05 12:25:41 -08:00

12 lines
121 B
SCSS

//
// Visibility utilities
//
.visible {
@include invisible(visible);
}
.invisible {
@include invisible(hidden);
}