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, 23 insertions, 0 deletions
diff --git a/src/css/_common/_utils.scss b/src/css/_common/_utils.scss
new file mode 100644
index 0000000..1c7b777
--- /dev/null
+++ b/src/css/_common/_utils.scss
@@ -0,0 +1,23 @@
+@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;
+ }
+}