17 lines
241 B
SCSS
17 lines
241 B
SCSS
|
.d-none {
|
||
|
@include responsive() {
|
||
|
display: none !important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.d-block {
|
||
|
@include responsive() {
|
||
|
display: block!important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.d-flex {
|
||
|
@include responsive() {
|
||
|
display: flex!important;
|
||
|
}
|
||
|
}
|