2019-05-15 16:06:38 +02:00
|
|
|
@include xs-screen {
|
|
|
|
.not-xs { display: none!important; }
|
2019-05-25 11:12:06 +02:00
|
|
|
.only-xs { display: inherit; }
|
|
|
|
}
|
|
|
|
@include sm-screen {
|
|
|
|
.not-xs { display: inherit; }
|
|
|
|
.only-xs { display: none!important; }
|
|
|
|
}
|
|
|
|
@include lg-screen {
|
|
|
|
.not-xs { display: inherit; }
|
|
|
|
.only-xs { display: none!important; }
|
2019-05-15 16:06:38 +02:00
|
|
|
}
|
|
|
|
|