Skip to content

Commit

Permalink
Fix typo (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
MosheZemah authored Nov 3, 2021
1 parent feb11a7 commit fd7ee94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}

&--popover {
@include theme-prop(box-shadow, box-shadow-mediun);
@include theme-prop(box-shadow, box-shadow-medium);
border-radius: $border-radius-medium;
@include theme-prop(background-color, secondary-background-color);
}
Expand Down
4 changes: 2 additions & 2 deletions src/styles/themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $theme: (
"dialog-background-color": $snow_white,
"modal-background-color": $snow_white,
"box-shadow-small": 0px 4px 8px rgba(0, 0, 0, 0.2),
"box-shadow-mediun": 0px 6px 20px rgba(0, 0, 0, 0.2),
"box-shadow-medium": 0px 6px 20px rgba(0, 0, 0, 0.2),
"box-shadow-large": 0px 15px 50px rgba(0, 0, 0, 0.3)
);

Expand Down Expand Up @@ -77,7 +77,7 @@ $theme-var: (
"dialog-background-color": var(--dialog-background-color),
"modal-background-color": var(--modal-background-color),
"box-shadow-small": var(--box-shadow-small),
"box-shadow-medium": var(--box-shadow-mediun),
"box-shadow-medium": var(--box-shadow-medium),
"box-shadow-large": var(--box-shadow-large)
);

Expand Down

0 comments on commit fd7ee94

Please sign in to comment.