Skip to content

Commit

Permalink
fix(lib): fix missing card shadow variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Jun 29, 2021
1 parent 50dc784 commit c59201c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/junipero/lib/Card/index.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@require "../theme/colors"

.junipero.card
--shadow-color: rgba($color-midnight, 0.1)

min-width: 150px
padding: 30px 40px
box-shadow: 0px 4px 30px -7px rgba($color-midnight, 0.1)
box-shadow: 0px 4px 30px -7px var(--shadow-color)
border-radius: 10px

0 comments on commit c59201c

Please sign in to comment.