- Replace @import with @use and @forward - Only color function is used in _basic.scss for now - Change _all.scss to _index.scss - Modules use direct dependencies - Move @include from _config.scss to _common.scss, this was a long term mistake - Remove $color_list - Change basic_color()
59 lines
738 B
SCSS
59 lines
738 B
SCSS
@use "../../global/config";
|
|
@use "../../mixins/media_query" as *;
|
|
|
|
.query_goingLarge {
|
|
@include goingLarge(config.$screen_tiny) {
|
|
}
|
|
;
|
|
}
|
|
|
|
.query_goingSmall {
|
|
@include goingSmall(config.$screen_gigantic) {
|
|
}
|
|
;
|
|
}
|
|
|
|
.query_phoneUp {
|
|
@include forPhoneUp {
|
|
}
|
|
}
|
|
|
|
.query_phoneOnly {
|
|
@include forPhoneOnly {
|
|
}
|
|
}
|
|
|
|
.query_tabletPortraitOnly {
|
|
@include forTabletPortraitOnly {
|
|
}
|
|
}
|
|
|
|
.query_tabletPortraitUp {
|
|
@include forTabletPortraitUp {
|
|
}
|
|
}
|
|
|
|
.query_tabletLandscapeOnly {
|
|
@include forTabletLandscapeOnly {
|
|
}
|
|
}
|
|
|
|
.query_tabletLandscapeUp {
|
|
@include forTabletLandscapeUp {
|
|
}
|
|
}
|
|
|
|
.query_desktopOnly {
|
|
@include forDesktopOnly {
|
|
}
|
|
}
|
|
|
|
.query_desktopUp {
|
|
@include forDesktopUp {
|
|
}
|
|
}
|
|
|
|
.query_bigDesktopUp {
|
|
@include forBigDesktopUp {
|
|
}
|
|
}
|