Skip to content

Commit

Permalink
Adding missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
daveyholler committed May 8, 2020
1 parent 50bc8de commit 04bd4dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/themes/eui-amsterdam/global_styling/mixins/_shadow.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@mixin euiSlightShadow($color: $euiShadowColor, $opacity: 0) {
box-shadow:
0 .8px .8px rgba($color, shadowOpacity(.04)),
0 2.3px 2px rgba($color, shadowOpacity(.03)),
0 2.3px 2px rgba($color, shadowOpacity(.03));
}

@mixin euiBottomShadowSmall($color: $euiShadowColor, $opacity: 0) {
Expand Down Expand Up @@ -79,12 +79,12 @@
box-shadow:
0 2.7px -9px rgba($color, shadowOpacity(.13)),
0 9.4px -24px rgba($color, shadowOpacity(.09)),
0 21.8px -43px rgba($color, shadowOpacity(.08)),
0 21.8px -43px rgba($color, shadowOpacity(.08));
} @else {
box-shadow:
0 2.7px 9px rgba($color, shadowOpacity(.13)),
0 9.4px 24px rgba($color, shadowOpacity(.09)),
0 21.8px 43px rgba($color, shadowOpacity(.08)),
0 21.8px 43px rgba($color, shadowOpacity(.08));

}

Expand Down

0 comments on commit 04bd4dc

Please sign in to comment.