aboutsummaryrefslogtreecommitdiff
path: root/_scss/utilities/_appearance.scss
diff options
context:
space:
mode:
Diffstat (limited to '_scss/utilities/_appearance.scss')
-rw-r--r--_scss/utilities/_appearance.scss13
1 files changed, 0 insertions, 13 deletions
diff --git a/_scss/utilities/_appearance.scss b/_scss/utilities/_appearance.scss
deleted file mode 100644
index f6f7bdb..0000000
--- a/_scss/utilities/_appearance.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-// Appearance
-//
-// The appearance property is used to display an element using a platform-native styling based on the users' operating system's theme.
-//
-// Values: auto | none
-// Default: auto
-//
-// http://www.w3.org/TR/css3-ui/#appearance
-@mixin appearance($value: auto) {
- -webkit-appearance: $value;
- -moz-appearance: $value;
- appearance: $value;
-}