Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
31
assets/scss/modules/_config.scss
Normal file
31
assets/scss/modules/_config.scss
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
@use 'hugo:vars' as hugo;
|
||||
|
||||
@mixin desktop {
|
||||
@media screen and (min-width: 961px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin widescreen {
|
||||
@media screen and (min-width: 1921px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin print {
|
||||
@media print {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin ltr {
|
||||
@if hugo.$text-direction == ltr {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin rtl {
|
||||
@if hugo.$text-direction == rtl {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue