feat: improve design layout selector

This commit is contained in:
Manuel Ruwe
2022-12-06 21:33:12 +01:00
parent 4d45805bce
commit 3a5644341d
8 changed files with 26 additions and 24 deletions

View File

@@ -14,7 +14,7 @@ export function Logo({ size = 'md', withoutText = false }: LogoProps) {
return (
<Group spacing={size === 'md' ? 'xs' : 4} noWrap>
<Image
width={size === 'md' ? 50 : 20}
width={size === 'md' ? 50 : 12}
src={config?.settings.customization.logoImageUrl || '/imgs/logo/logo.png'}
style={{
position: 'relative',
@@ -22,7 +22,7 @@ export function Logo({ size = 'md', withoutText = false }: LogoProps) {
/>
{withoutText ? null : (
<Text
size={size === 'md' ? 22 : 'xs'}
size={size === 'md' ? 22 : 10}
weight="bold"
variant="gradient"
gradient={primaryGradient}