Browse Source

Replace box-shadow instances with mixin.

pull/29/head
Evan Theurer 12 years ago
parent
commit
2dbe2cefec
  1. 5
      src/styles/components/_bar.scss

5
src/styles/components/_bar.scss

@ -92,7 +92,7 @@
} }
.btn:focus { .btn:focus {
border: none; border: none;
box-shadow: 0; @include box-shadow(0);
outline: none; outline: none;
} }
.btn:hover { .btn:hover {
@ -159,9 +159,8 @@
#bar { #bar {
@include breakpt($breakpoint-medium) { @include breakpt($breakpoint-medium) {
-webkit-box-shadow: none;
box-shadow: none;
z-index: 40; z-index: 40;
@include box-shadow(none);
} }
> .middle img { > .middle img {
@include breakpt($breakpoint-medium) { @include breakpt($breakpoint-medium) {

Loading…
Cancel
Save