mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-09-06 15:56:23 -07:00
21 lines
No EOL
478 B
SCSS
21 lines
No EOL
478 B
SCSS
@mixin box-shadow($properties...) {
|
|
filter: drop-shadow($properties);
|
|
}
|
|
|
|
@mixin shadow-filter($properties...) {
|
|
-webkit-filter: drop-shadow($properties);
|
|
filter: drop-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;
|
|
} |