From 32ab5bfd41d953158cd708235abd91e0f9e4a1f0 Mon Sep 17 00:00:00 2001 From: Thijs Louisse Date: Tue, 30 May 2023 18:44:41 +0200 Subject: [PATCH] fix(button): only pre-style non-shorthands for easier extension --- packages/ui/components/button/src/LionButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/components/button/src/LionButton.js b/packages/ui/components/button/src/LionButton.js index 14b3d8905..21338daf5 100644 --- a/packages/ui/components/button/src/LionButton.js +++ b/packages/ui/components/button/src/LionButton.js @@ -47,7 +47,7 @@ export class LionButton extends DisabledWithTabIndexMixin(LitElement) { box-sizing: border-box; vertical-align: middle; line-height: 24px; - background: #eee; /* minimal styling to make it recognizable as btn */ + background-color: #eee; /* minimal styling to make it recognizable as btn */ padding: 8px; /* padding to fix with min-height */ outline: none; /* focus style handled below */ cursor: default; /* we should always see the default arrow, never a caret */