This commit is contained in:
Timothy Jaeryang Baek 2025-07-07 19:32:41 +04:00
parent 7003395a5f
commit a5367145bf
3 changed files with 12 additions and 8 deletions

View file

@ -186,10 +186,10 @@
});
</script>
<div class="flex items-center mb-2">
<div class=" -translate-x-1.5">
<div class="flex items-center mb-2 pt-1">
<div class=" -translate-x-1.5 flex items-center">
<button
class="p-1.5 bg-transparent transition rounded-lg"
class="p-0.5 bg-transparent transition rounded-lg"
on:click={() => {
show = !show;
}}

View file

@ -9,10 +9,10 @@
export let selectedModelId = '';
</script>
<div class="flex items-center mb-2">
<div class=" -translate-x-1.5">
<div class="flex items-center mb-2 pt-1">
<div class=" -translate-x-1.5 flex items-center">
<button
class="p-1.5 bg-transparent transition rounded-lg"
class="p-0.5 bg-transparent transition rounded-lg"
on:click={() => {
show = !show;
}}
@ -21,7 +21,11 @@
</button>
</div>
<div class=" font-medium text-base">Settings</div>
<div class=" font-medium text-base flex items-center gap-1">
<div>
{$i18n.t('Settings')}
</div>
</div>
</div>
<div class="mt-1">

View file

@ -45,7 +45,7 @@
show = false;
}}
>
<div class=" px-3.5 py-2.5 h-screen">
<div class=" px-3.5 py-2.5 h-screen flex flex-col">
<slot />
</div>
</Drawer>