aboutsummaryrefslogtreecommitdiff
path: root/src/css/_common/_utils.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/css/_common/_utils.scss')
-rw-r--r--src/css/_common/_utils.scss23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/css/_common/_utils.scss b/src/css/_common/_utils.scss
deleted file mode 100644
index 1c7b777..0000000
--- a/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;
- }
-}