1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-06 15:56:23 -07:00
gochan/frontend/sass/_util.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;
}