diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-05 23:40:06 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-05 23:41:01 +0200 |
| commit | 37aa73b88961f6188d6608dd32eee32080d6c409 (patch) | |
| tree | 0200df39d7d831672b7a04a1da456dd6efdbae7c /res/css/modules | |
| parent | bcde522ed96dc407aa4b71f6842767fe69a95d50 (diff) | |
fixes #182
Also started using mixins for browser prefixes - box shadow and box
sizing
Diffstat (limited to 'res/css/modules')
| -rw-r--r-- | res/css/modules/mixins.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/res/css/modules/mixins.scss b/res/css/modules/mixins.scss index e69de29b..9afcbe80 100644 --- a/res/css/modules/mixins.scss +++ b/res/css/modules/mixins.scss @@ -0,0 +1,11 @@ +@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; +} + +@mixin rz-box-sizing-border() { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +}
\ No newline at end of file |
