diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-24 03:20:47 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-24 03:20:47 +0000 |
commit | f24f2d15275961f1c0144e68fde75a60aeaaa165 (patch) | |
tree | 38be1626f3ade436fbd17eadb2753fa2f0effb37 /themes/even/src/css/_common/_utils.scss | |
parent | bf04383b34c4a4fdfe239de2805a30a051921002 (diff) | |
download | capotej.com-f24f2d15275961f1c0144e68fde75a60aeaaa165.tar.gz |
move to bear theme
Diffstat (limited to '')
-rw-r--r-- | themes/even/src/css/_common/_utils.scss | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/themes/even/src/css/_common/_utils.scss b/themes/even/src/css/_common/_utils.scss deleted file mode 100644 index 1c7b777..0000000 --- a/themes/even/src/css/_common/_utils.scss +++ /dev/null @@ -1,23 +0,0 @@ -@mixin clearfix() { - &:before, - &:after { - content: " "; - display: table; - } - - &:after { - clear: both; - } -} - -@mixin min-screen($min-width: $global-body-width) { - @media screen and (min-width: $min-width) { - @content; - } -} - -@mixin max-screen($max-width: $global-body-width) { - @media screen and (max-width: $max-width) { - @content; - } -} |