Skip to content

Commit

Permalink
fix(button): fix base box-shadow styling (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
dancormier authored Dec 5, 2022
1 parent fdef4f9 commit f79b666
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/css/components/buttons.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--_bu-bc: transparent;
--_bu-bg: transparent;
--_bu-br: var(--br-sm);
--_bu-bs: inset 0 var(--su-static1) 0 0 hsla(0, 0, 100%, 0.7);
--_bu-bs: none;
--_bu-fc: var(--theme-button-color);
--_bu-focus-ring: 0 0 0 var(--su-static4) var(--focus-ring);
--_bu-fs: var(--fs-body1);
Expand Down Expand Up @@ -111,6 +111,8 @@

// MODIFIERS
&&__filled {
--_bu-bs: inset 0 var(--su-static1) 0 0 hsla(0, 0, 100%, 0.7);

border-color: var(--_bu-filled-bc);
background-color: var(--_bu-filled-bg);
color: var(--_bu-filled-fc);
Expand Down

0 comments on commit f79b666

Please sign in to comment.