mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
9 lines
189 B
SCSS
9 lines
189 B
SCSS
|
// stylelint-disable declaration-no-important
|
||
|
|
||
|
// Visibility
|
||
|
|
||
|
@mixin invisible($visibility) {
|
||
|
visibility: $visibility !important;
|
||
|
@include deprecate("`invisible()`", "v4.3.0", "v5");
|
||
|
}
|