Skip to content

Commit

Permalink
fix: update moss color variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed May 2, 2024
1 parent 6409b27 commit f8792fa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/cyan-tomatoes-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ryanatkn/fuz": patch
---

fix: update moss color variable usage
4 changes: 2 additions & 2 deletions src/lib/Alert.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
.message {
min-height: var(--message_min_height);
width: 100%;
color: var(--color);
color: var(--text_color);
font-weight: 700;
font-size: var(--size_md);
border-width: var(--border_width_1);
border-style: var(--border_style);
border-color: var(--color);
border-color: var(--text_color);
display: flex;
justify-content: flex-start; /* override button horizontal centering */
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Github_Logo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
const {
size = 'var(--space_xl7, 64px)',
fill = 'var(--color, #000)',
fill = 'var(--text_color, #000)',
label = 'the GitHub icon, an octocat silhouette',
attrs,
}: Props = $props();
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Spider.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
const {
size = '100%',
fill = 'var(--color, #000)',
fill = 'var(--text_color, #000)',
label = 'a little brown spider',
path_attrs,
attrs,
Expand Down

0 comments on commit f8792fa

Please sign in to comment.