Skip to content

Commit

Permalink
fix(checkbox-button): fix sizing in theme
Browse files Browse the repository at this point in the history
  • Loading branch information
skhamvon authored and dpellier committed Sep 7, 2023
1 parent 4df8f9e commit 9bc48db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
cursor: pointer;

.checkbox-button {
border-radius: var(--ods-size-border-radius-02);
border-radius: var(--ods-size-border-radius-01);
border-style: solid;
text-align: center;
vertical-align: middle;
Expand Down
12 changes: 6 additions & 6 deletions packages/themes/blue-jeans/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,16 @@
),
$checkbox-button: (
sm: (
border-width: calc(0.2rem * var(--ods-size-ratio)),
height: var(--ods-size-08),
border-width: var(--ods-size-02),
height: var(--ods-size-06),
margin: calc(0.25rem * var(--ods-size-ratio)) calc(0.5rem * var(--ods-size-ratio)),
width: var(--ods-size-08),
width: var(--ods-size-06),
),
md: (
border-width: calc(0.2rem * var(--ods-size-ratio)),
height: var(--ods-size-09),
border-width: var(--ods-size-02),
height: var(--ods-size-08),
margin: calc(0.25rem * var(--ods-size-ratio)) calc(0.5rem * var(--ods-size-ratio)),
width: var(--ods-size-09),
width: var(--ods-size-08),
),
),
$chip: (
Expand Down

0 comments on commit 9bc48db

Please sign in to comment.