diff options
Diffstat (limited to 'app/assets/stylesheets/mixins.css.scss')
| -rw-r--r-- | app/assets/stylesheets/mixins.css.scss | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/stylesheets/mixins.css.scss b/app/assets/stylesheets/mixins.css.scss index d69e5eb..e098fec 100644 --- a/app/assets/stylesheets/mixins.css.scss +++ b/app/assets/stylesheets/mixins.css.scss @@ -12,19 +12,19 @@ border-radius: $pixels; } -@mixin box-shadow($shadows...){ +@mixin box-shadow($shadows...) { -webkit-box-shadow: $shadows; -moz-box-shadow: $shadows; box-shadow: $shadows; } -@mixin appearance($appearance){ +@mixin appearance($appearance) { -webkit-appearance: $appearance; -moz-appearance: $appearance; appearance: $appearance; } -@mixin gradient($top, $bottom){ +@mixin gradient($top, $bottom) { background-color: $bottom; *background-color: $bottom; background-image: -moz-linear-gradient(top, $top, $bottom); @@ -45,5 +45,7 @@ clear: both; visibility: hidden; } - * html & { height: 1px } + * html & { + height: 1px; + } } |
