mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-18 14:00:59 +00:00
40 lines
598 B
SCSS
40 lines
598 B
SCSS
// stylelint-disable declaration-no-important
|
|
.u-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.u-hidden\@medium {
|
|
@include medium {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.u-hidden\@small {
|
|
@include small {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.u-inline\@medium {
|
|
@include medium {
|
|
display: inline !important;
|
|
}
|
|
}
|
|
|
|
.u-inline\@small {
|
|
@include small {
|
|
display: inline !important;
|
|
}
|
|
}
|
|
|
|
.u-block\@medium {
|
|
@include medium {
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
.u-block\@small {
|
|
@include small {
|
|
display: block !important;
|
|
}
|
|
}
|