From f36c40bc6bba2a1dc100f96e1fd4f1adb12b1134 Mon Sep 17 00:00:00 2001 From: Nassos Kat Date: Tue, 10 Oct 2023 17:34:17 +0300 Subject: [PATCH] feat(web) add hover background to image toolbar icons (#4402) * feat: add hover background to image toolbar icons * not use background color when not set --------- Co-authored-by: katsadim Co-authored-by: Alex Tran --- .../lib/components/elements/buttons/circle-icon-button.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/components/elements/buttons/circle-icon-button.svelte b/web/src/lib/components/elements/buttons/circle-icon-button.svelte index 45cfbd259f..344793bab5 100644 --- a/web/src/lib/components/elements/buttons/circle-icon-button.svelte +++ b/web/src/lib/components/elements/buttons/circle-icon-button.svelte @@ -2,7 +2,7 @@ import type Icon from 'svelte-material-icons/AbTesting.svelte'; export let logo: typeof Icon; - export let backgroundColor = 'transparent'; + export let backgroundColor = ''; export let hoverColor = '#e2e7e9'; export let padding = '3'; export let size = '24';