1
0
Fork 0
freesewing/packages/css-theme/src/_utility.scss

14 lines
286 B
SCSS
Raw Normal View History

@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; }
}