blob: e449b83668dc4b3b5ebfd473ced229f29df604ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@mixin rz-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) {
box-shadow: inset $offset-x $offset-y $blur $color;
}
@mixin rz-box-sizing-border() {
box-sizing: border-box;
}
@mixin rz-box-sizing-padding() {
box-sizing: padding-box;
}
|