From 0b61d60fb87b0674da6e4a7b4b49dd10187b1b4b Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 29 Sep 2021 14:00:20 -0400 Subject: [PATCH] Remove unused sass mixins --- src/styles/_mixins.scss | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/styles/_mixins.scss diff --git a/src/styles/_mixins.scss b/src/styles/_mixins.scss deleted file mode 100644 index ed23ab0833..0000000000 --- a/src/styles/_mixins.scss +++ /dev/null @@ -1,23 +0,0 @@ -@mixin background-cover($position) { - background-position: $position; - background-repeat: no-repeat; - background-size: cover; -} - -@mixin circle($size) { - @include square($size); - border-radius: 100%; -} - -@mixin position($position, $top: null, $right: null, $bottom: null, $left: null) { - position: $position; - top: $top; - right: $right; - bottom: $bottom; - left: $left; -} - -@mixin square($size) { - height: $size; - width: $size; -}