Skip to content

Commit

Permalink
fix card shadows
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Jul 23, 2024
1 parent 34a98cf commit 6517d8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/spicy-kiwis-whisper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ryanatkn/fuz": patch
---

fix card shadows
4 changes: 2 additions & 2 deletions src/lib/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@
text-align: center;
}
.link {
box-shadow: var(--shadow, var(--shadow_outset_sm));
box-shadow: var(--shadow, var(--shadow_outset_sm) var(--shadow_color_sm));
}
.link:active {
box-shadow: var(--shadow, var(--shadow_inset_sm));
box-shadow: var(--shadow, var(--shadow_inset_sm) var(--shadow_color_sm));
}
.link.selected .content,
.link:hover .content {
Expand Down

0 comments on commit 6517d8c

Please sign in to comment.