refactor: Standardize order of @use
This commit is contained in:
parent
43f66d8178
commit
5b5944e229
2 changed files with 4 additions and 4 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
|
@use "sass:map";
|
||||||
|
|
||||||
@use "../global/config";
|
@use "../global/config";
|
||||||
@use "../global/common";
|
@use "../global/common";
|
||||||
@use "../elements/interactive";
|
@use "../elements/interactive";
|
||||||
@use "../mixins/media_query" as *;
|
@use "../mixins/media_query" as *;
|
||||||
|
|
||||||
@use "sass:map";
|
|
||||||
|
|
||||||
// Root
|
// Root
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
html {
|
html {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
@use "../global/config";
|
|
||||||
|
|
||||||
@use "sass:math";
|
@use "sass:math";
|
||||||
|
|
||||||
|
@use "../global/config";
|
||||||
|
|
||||||
//Sections for Media Queries
|
//Sections for Media Queries
|
||||||
@mixin forPhoneUp {
|
@mixin forPhoneUp {
|
||||||
@media (min-width: #{config.$screen_tiny - 1}) { @content; } //599px
|
@media (min-width: #{config.$screen_tiny - 1}) { @content; } //599px
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue