From c75943aa2d49dc4c2da4941f405d48c1b587d4bf Mon Sep 17 00:00:00 2001 From: Dan Cormier Date: Mon, 5 Dec 2022 11:49:44 -0500 Subject: [PATCH] fix(button): fix base box-shadow styling --- lib/css/components/buttons.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/css/components/buttons.less b/lib/css/components/buttons.less index 4772f5d790..07d35aee4c 100644 --- a/lib/css/components/buttons.less +++ b/lib/css/components/buttons.less @@ -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); @@ -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);