mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-15 11:59:39 +03: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
12 lines
121 B
SCSS
12 lines
121 B
SCSS
//
|
|
// Visibility utilities
|
|
//
|
|
|
|
.visible {
|
|
@include invisible(visible);
|
|
}
|
|
|
|
.invisible {
|
|
@include invisible(hidden);
|
|
}
|