diff --git a/src/lib/components/studio/chat/chat.svelte b/src/lib/components/studio/chat/chat.svelte index f70008a9a..9244f979f 100644 --- a/src/lib/components/studio/chat/chat.svelte +++ b/src/lib/components/studio/chat/chat.svelte @@ -211,6 +211,7 @@ @media (min-width: 768px) { width: 100%; height: 100%; + padding-inline: 0; background-color: transparent; } } @@ -224,10 +225,6 @@ .divider-wrapper { margin-inline-start: calc(-1 * var(--space-4)); width: calc(100% + 2 * var(--space-4)); - @media (min-width: 768px) { - margin-inline-start: calc(-1 * var(--space-7)); - width: calc(100% + 2 * var(--space-7)); - } } // fix alignment bug in Safari diff --git a/src/lib/components/studio/sidebarProject.svelte b/src/lib/components/studio/sidebarProject.svelte index 8d750d9ae..56f348735 100644 --- a/src/lib/components/studio/sidebarProject.svelte +++ b/src/lib/components/studio/sidebarProject.svelte @@ -21,7 +21,7 @@ const menuItems: Array< { type: 'divider' } | { type: 'item'; label: string; path: string; icon: ComponentType } > = [ - { type: 'item', label: 'Studio', path: 'studio', icon: IconViewGrid }, + { type: 'item', label: 'Studio', path: 'studio', icon: IconTemplate }, { type: 'divider' }, { type: 'item', label: 'Auth', path: 'auth', icon: IconUserGroup }, { type: 'item', label: 'Databases', path: 'databases', icon: IconDatabase }, @@ -37,12 +37,11 @@ {#each menuItems as menuItem} {#if menuItem.type === 'item'} + {@const isActive = page.url.pathname.includes(menuItem.path)}