From fcc0a8db223f0017456c9c477b8ce847e0d499f1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 24 Apr 2018 17:10:55 +0400 Subject: [PATCH] Add appearance Signed-off-by: Valentin Popov --- _scss/utilities/_appearance.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _scss/utilities/_appearance.scss 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; +}