mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-09 12:06:24 -07:00
19 lines
No EOL
444 B
SCSS
19 lines
No EOL
444 B
SCSS
@mixin box-shadow($properties...) {
|
|
-moz-box-shadow: $properties;
|
|
-ms-box-shadow: $properties;
|
|
-webkit-box-shadow: $properties;
|
|
box-shadow: $properties;
|
|
}
|
|
|
|
@mixin box-sizing($sizing) {
|
|
-moz-box-sizing: $sizing;
|
|
-webkit-box-sizing: $sizing;
|
|
box-sizing: $sizing;
|
|
}
|
|
|
|
@mixin border-radius($properties...) {
|
|
-moz-border-radius: $properties;
|
|
-ms-border-radius: $properties;
|
|
-webkit-border-radius: $properties;
|
|
border-radius: $properties;
|
|
} |