diff options
author | Valentin Popov <info@valentineus.link> | 2018-04-24 16:10:55 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-04-24 16:10:55 +0300 |
commit | fcc0a8db223f0017456c9c477b8ce847e0d499f1 (patch) | |
tree | dbad64349a66bc2645f94fd3ce1dab0b745bd095 | |
parent | 2a8b3946344dceb7d3f13f3616bb0fed30b0ae53 (diff) | |
download | popov.link-fcc0a8db223f0017456c9c477b8ce847e0d499f1.tar.xz popov.link-fcc0a8db223f0017456c9c477b8ce847e0d499f1.zip |
Add appearance
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | _scss/utilities/_appearance.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/_scss/utilities/_appearance.scss b/_scss/utilities/_appearance.scss new file mode 100644 index 0000000..f6f7bdb --- /dev/null +++ b/_scss/utilities/_appearance.scss @@ -0,0 +1,13 @@ +// 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; +} |