Skip to content

Commit

Permalink
fix: remove units from 0
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshTheWanderer committed Nov 21, 2023
1 parent e38e7af commit 0bb0e74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stories/assets/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--button-primary-color: var(--color-black);
--button-secondary-background: transparent;
--button-secondary-color: var(--color-white);
--button-secondary-box-shadow: rgba(255, 255, 255, 0.15) 0px 0px 0px 1px;
--button-secondary-box-shadow: rgba(255, 255, 255, 0.15) 0 0 0 1px;

--header-border-color: var(--color-white);
}
2 changes: 1 addition & 1 deletion stories/assets/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--button-primary-color: var(--color-white);
--button-secondary-background: transparent;
--button-secondary-color: var(--color-black);
--button-secondary-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset;
--button-secondary-box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 1px inset;

--header-border-color: var(--color-black);
}

0 comments on commit 0bb0e74

Please sign in to comment.