diff --git a/packages/theme/styles/_colors.scss b/packages/theme/styles/_colors.scss index 64fa22d99b..406475182b 100644 --- a/packages/theme/styles/_colors.scss +++ b/packages/theme/styles/_colors.scss @@ -76,7 +76,7 @@ --theme-avatar-bg: #E0DAD5; --theme-avatar-hover: radial-gradient(86.62% 86.62% at 50% 13.38%, rgba(196, 196, 204, 0.4) 0%, rgba(137, 140, 150, 0.4) 100%); --theme-avatar-border: rgba(255, 255, 255, .1); - --theme-avatar-shadow: drop-shadow(0px 0px 10px rgba(46, 41, 40, .8)) drop-shadow(0px 10px 54px rgba(125, 112, 105, 1)); + --theme-avatar-shadow: drop-shadow(0px 14px 44px rgba(74, 67, 64, .8)); --theme-bg-accent-color: rgba(255, 255, 255, .03); --theme-bg-accent-hover: rgba(255, 255, 255, .06); @@ -140,7 +140,7 @@ --theme-avatar-bg: #E0DAD5; --theme-avatar-hover: radial-gradient(86.62% 86.62% at 50% 13.38%, rgba(196, 196, 204, 0.4) 0%, rgba(137, 140, 150, 0.4) 100%); --theme-avatar-border: rgba(255, 255, 255, .1); - --theme-avatar-shadow: drop-shadow(0px 0px 10px rgba(46, 41, 40, .8)) drop-shadow(0px 10px 54px rgba(125, 112, 105, 1)); + --theme-avatar-shadow: drop-shadow(0px 14px 44px rgba(74, 67, 64, .8)); --theme-bg-accent-color: rgba(255, 255, 255, .03); --theme-bg-accent-hover: rgba(255, 255, 255, .06); @@ -203,7 +203,7 @@ --theme-avatar-bg: #C4C4C4; --theme-avatar-hover: #EEEDED; --theme-avatar-border: rgba(255, 255, 255, .7); - --theme-avatar-shadow: drop-shadow(0px 0px 10px rgba(46, 41, 40, .4)) drop-shadow(0px 10px 54px rgba(125, 112, 105, 1)); + --theme-avatar-shadow: drop-shadow(0px 14px 44px rgba(74, 67, 64, .8)); --theme-bg-accent-color: rgba(0, 0, 0, .03); --theme-bg-accent-hover: rgba(0, 0, 0, .05); diff --git a/packages/ui/src/components/CircleButton.svelte b/packages/ui/src/components/CircleButton.svelte index b89ce0f82c..8a62492f33 100644 --- a/packages/ui/src/components/CircleButton.svelte +++ b/packages/ui/src/components/CircleButton.svelte @@ -19,7 +19,7 @@ import Icon from './Icon.svelte' export let icon: Asset | AnySvelteComponent - export let size: 'small' | 'medium' = 'medium' + export let size: 'small' | 'medium' | 'large' = 'large'