diff options
author | luxagraf <sng@luxagraf> | 2021-01-16 14:57:53 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-01-16 14:57:53 -0500 |
commit | a9f3a16398ca8f463bf4618f654ef25f5b85f1e5 (patch) | |
tree | 4cf367d8dd4588bbcdcceafc3545ad3fcbd439a9 /design/sassold/_queries.scss | |
parent | 510c50ae52131f0977cd591ad4b7a12bb5a91da1 (diff) |
design: moved old sass files to 'old'
Diffstat (limited to 'design/sassold/_queries.scss')
-rw-r--r-- | design/sassold/_queries.scss | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/design/sassold/_queries.scss b/design/sassold/_queries.scss deleted file mode 100644 index 8a0eec2..0000000 --- a/design/sassold/_queries.scss +++ /dev/null @@ -1,30 +0,0 @@ -$breakpoint-omega: 420px; //728 -$breakpoint-alpha: 728px; //728 -$breakpoint-beta: 824px; //784 -$breakpoint-gamma: 960px; -$breakpoint-delta: 1170px; -$breakpoint-epsilon: $max_width; - -@mixin breakpoint($point) { - @if $point == "omega" { - @media screen and (min-width:$breakpoint-omega ){ @content; } - } - @if $point == "alpha" { - @media screen and (min-width:$breakpoint-alpha ){ @content; } - } - @else if $point == "beta" { - @media screen and (min-width: $breakpoint-beta) { @content; } - } - @else if $point == "beta-2" { - @media screen and (min-width: $breakpoint-beta-2) { @content; } - } - @else if $point == "gamma" { - @media screen and (min-width: $breakpoint-gamma) { @content; } - } - @else if $point == "delta" { - @media screen and (min-width: $breakpoint-delta) { @content; } - } - @else if $point == "epsilon" { - @media screen and (min-width: $breakpoint-epsilon) { @content; } - } -} |