2017-08-26 00:04:10 +02:00
|
|
|
// stylelint-disable declaration-no-important
|
2017-02-12 16:29:56 +01:00
|
|
|
.u-hidden {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-hidden\@sm {
|
|
|
|
@include media-breakpoint-up(sm) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-hidden\@xs {
|
|
|
|
@include media-breakpoint-down(xs) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-inline\@sm {
|
|
|
|
@include media-breakpoint-up(sm) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-inline\@xs {
|
|
|
|
@include media-breakpoint-down(xs) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-block\@sm {
|
|
|
|
@include media-breakpoint-up(sm) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
.u-block\@xs {
|
|
|
|
@include media-breakpoint-down(xs) {
|
2017-08-01 11:57:10 +02:00
|
|
|
display: block !important;
|
|
|
|
}
|
2017-02-12 16:29:56 +01:00
|
|
|
}
|