Skip to content

Commit

Permalink
fix shadows after moss upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Aug 15, 2024
1 parent 4d294a0 commit b96342f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/mean-buttons-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@ryanatkn/fuz': patch
---

fix shadows after moss upgrade
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) var(--shadow_color_sm));
box-shadow: var(--shadow, var(--shadow_outset_sm) var(--shadow_color_2));
}
.link:active {
box-shadow: var(--shadow, var(--shadow_inset_sm) var(--shadow_color_sm));
box-shadow: var(--shadow, var(--shadow_inset_sm) var(--shadow_color_2));
}
.link.selected .content,
.link:hover .content {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Dialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@

<style>
.dialog {
--pane_shadow: var(--shadow_xl) var(--shadow_color_xl);
--pane_shadow: var(--shadow_xl) var(--shadow_color_5);
position: fixed;
inset: 0;
overflow: auto;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Library_Primary_Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
}
.scrolled {
box-shadow: var(--shadow_xs) var(--shadow_color_xs);
box-shadow: var(--shadow_xs) var(--shadow_color_1);
}
.background {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@

<style>
a.chip:active {
box-shadow: var(--shadow_inset_xs) var(--shadow_color_xs);
box-shadow: var(--shadow_inset_xs) var(--shadow_color_1);
}
</style>

0 comments on commit b96342f

Please sign in to comment.