Skip to content

Commit

Permalink
fix(checkbox): incorrect logical shape var names
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 528581426
  • Loading branch information
asyncLiz authored and Copybara-Service committed May 1, 2023
1 parent 8fbe3c6 commit c2ca4f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions checkbox/lib/_checkbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ $_checkmark-bottom-left: 7px, -14px;

// Support logical shape properties
--_container-shape-start-start: var(
--md-checkbox-shape-start-start,
--md-checkbox-container-shape-start-start,
var(--_container-shape)
);
--_container-shape-start-end: var(
--md-checkbox-shape-start-end,
--md-checkbox-container-shape-start-end,
var(--_container-shape)
);
--_container-shape-end-end: var(
--md-checkbox-shape-end-end,
--md-checkbox-container-shape-end-end,
var(--_container-shape)
);
--_container-shape-end-start: var(
--md-checkbox-shape-end-start,
--md-checkbox-container-shape-end-start,
var(--_container-shape)
);

Expand Down

0 comments on commit c2ca4f8

Please sign in to comment.