Skip to content

Commit

Permalink
fix(styles): button height and width are reversed (#2552)
Browse files Browse the repository at this point in the history
Signed-off-by: Merlin <[email protected]>
  • Loading branch information
merlinio2000 authored Oct 22, 2024
1 parent 52098f2 commit 7442edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

--rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
--rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
--rdp-day_button-height: var(--rdp-day-width); /* The height of the day cells. */
--rdp-day_button-width: var(--rdp-day-height); /* The width of the day cells. */
--rdp-day_button-height: var(--rdp-day-height); /* The height of the day cells. */
--rdp-day_button-width: var(--rdp-day-width); /* The width of the day cells. */

--rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
--rdp-selected-font: bold large var(--rdp-font-family); /* The font of the selected days. */
Expand Down

0 comments on commit 7442edd

Please sign in to comment.