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
|
|
|
}
|
|
|
|
|
2019-06-09 13:38:12 +02:00
|
|
|
.shadow {
|
|
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-wrapper.dark .shadow {
|
|
|
|
border: 1px solid #fff3;
|
|
|
|
}
|
|
|
|
|