Add appearance

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-04-24 17:10:55 +04:00
parent 2a8b394634
commit fcc0a8db22
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -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;
}