Skip to content

Commit

Permalink
fix: whiteboard selected button bg
Browse files Browse the repository at this point in the history
  • Loading branch information
tiensonqin committed Nov 14, 2023
1 parent 5023316 commit 10a025e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/frontend/components/export.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -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 []
Expand Down
4 changes: 2 additions & 2 deletions tldraw/apps/tldraw-logseq/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 10a025e

Please sign in to comment.