mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 12:12:30 +00:00
11 lines
252 B
SCSS
11 lines
252 B
SCSS
//- Styling to hide elements
|
|
%hidden{
|
|
display: none!important;//!important is usually a thing to avoid, but if we're applying this, we want it to be gone no matter what.
|
|
}
|
|
%hideBase{
|
|
.sheet-hidden,
|
|
.hidden,
|
|
*[hidden]{
|
|
@extend %hidden;
|
|
}
|
|
} |