fix: whiteboard selected button bg

pull/10132/head
Tienson Qin 2023-11-14 14:54:36 +08:00
parent 5023316274
commit 10a025e8ef
2 changed files with 3 additions and 3 deletions

View File

@ -275,7 +275,7 @@
[:option {:key n :value n} n])]]]))
(when @*content
[:div.mt-4
[:div.mt-4.flex.flex-row.gap-2
(ui/button (if @*copied? (t :export-copied-to-clipboard) (t :export-copy-to-clipboard))
:class "mr-4"
:on-click (fn []

View File

@ -17,8 +17,8 @@
--color-text: var(--ls-primary-text-color);
--color-text-inverted: var(--ls-tertiary-background-color);
--color-hover: var(--ls-secondary-background-color);
--color-selectedStroke: var(--color-indigo-900);
--color-selectedFill: var(--color-indigo-500);
--color-selectedStroke: var(--ls-button-background);
--color-selectedFill: hsl(var(--ls-button-background-hsl) / 0.9);
--color-selectedContrast: #fff;
--shadow-small: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);