From d5c3d1b86ac97ea296a769aaf051c21468d627e6 Mon Sep 17 00:00:00 2001 From: Himself65 Date: Wed, 17 May 2023 15:49:55 -0700 Subject: [PATCH] fix: sidebar fallback ui position (#2424) --- .../component/src/components/app-sidebar/fallback.css.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/component/src/components/app-sidebar/fallback.css.ts b/packages/component/src/components/app-sidebar/fallback.css.ts index 15925f7d77..8551d541b6 100644 --- a/packages/component/src/components/app-sidebar/fallback.css.ts +++ b/packages/component/src/components/app-sidebar/fallback.css.ts @@ -1,14 +1,15 @@ import { style } from '@vanilla-extract/css'; export const fallbackStyle = style({ - margin: '0 2px', + margin: '12px 16px', height: '100%', }); export const fallbackHeaderStyle = style({ - height: '58px', + height: '56px', width: '100%', display: 'flex', + alignItems: 'center', flexDirection: 'row', gap: '8px', });