Scss basics
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
@mixin vendor($property, $value...)
|
||||
{
|
||||
-webkit-#{$property}: $value;
|
||||
-moz-#{$property}: $value;
|
||||
-ms-#{$property}: $value;
|
||||
#{$property}: $value;
|
||||
}
|
||||
|
||||
@mixin hocus()
|
||||
{
|
||||
&:hover, &:focus
|
||||
{
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user