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