summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/client/css/modules/mixins.scss16
1 files changed, 4 insertions, 12 deletions
diff --git a/res/client/css/modules/mixins.scss b/res/client/css/modules/mixins.scss
index 10ff7454..e449b836 100644
--- a/res/client/css/modules/mixins.scss
+++ b/res/client/css/modules/mixins.scss
@@ -1,23 +1,15 @@
@mixin rz-box-shadow($offset-x, $offset-y, $blur, $spread, $color) {
- -webkit-box-shadow: $offset-x $offset-y $blur $spread $color;
- -moz-box-shadow: $offset-x $offset-y $blur $spread $color;
- box-shadow: $offset-x $offset-y $blur $spread $color;
+ box-shadow: $offset-x $offset-y $blur $spread $color;
}
@mixin rz-inset-box-shadow($offset-x, $offset-y, $blur, $color) {
- -webkit-box-shadow: inset $offset-x $offset-y $blur $color;
- -moz-box-shadow: inset $offset-x $offset-y $blur $color;
- box-shadow: inset $offset-x $offset-y $blur $color;
+ box-shadow: inset $offset-x $offset-y $blur $color;
}
@mixin rz-box-sizing-border() {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
+ box-sizing: border-box;
}
@mixin rz-box-sizing-padding() {
- -webkit-box-sizing: padding-box;
- -moz-box-sizing: padding-box;
- box-sizing: padding-box;
+ box-sizing: padding-box;
} \ No newline at end of file