summaryrefslogtreecommitdiff
path: root/_sass/_mixins.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/_mixins.scss')
-rw-r--r--_sass/_mixins.scss20
1 files changed, 0 insertions, 20 deletions
diff --git a/_sass/_mixins.scss b/_sass/_mixins.scss
deleted file mode 100644
index f813c72..0000000
--- a/_sass/_mixins.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-@mixin clearfix {
- &:before {
- display: table;
- content: "";
- }
-
- &:after {
- display: table;
- clear: both;
- content: "";
- }
-}
-
-@mixin transition ($param, $time, $type) {
- -webkit-transition: $param $time $type;
- -moz-transition: $param $time $type;
- -o-transition: $param $time $type;
- -ms-transition: $param $time $type;
- transition: $param $time $type;
-}