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> </script>
<div class="flex items-center mb-2"> <div class="flex items-center mb-2 pt-1">
<div class=" -translate-x-1.5"> <div class=" -translate-x-1.5 flex items-center">
<button <button
class="p-1.5 bg-transparent transition rounded-lg" class="p-0.5 bg-transparent transition rounded-lg"
on:click={() => { on:click={() => {
show = !show; show = !show;
}} }}

View file

@ -9,10 +9,10 @@
export let selectedModelId = ''; export let selectedModelId = '';
</script> </script>
<div class="flex items-center mb-2"> <div class="flex items-center mb-2 pt-1">
<div class=" -translate-x-1.5"> <div class=" -translate-x-1.5 flex items-center">
<button <button
class="p-1.5 bg-transparent transition rounded-lg" class="p-0.5 bg-transparent transition rounded-lg"
on:click={() => { on:click={() => {
show = !show; show = !show;
}} }}
@ -21,7 +21,11 @@
</button> </button>
</div> </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>
<div class="mt-1"> <div class="mt-1">

View file

@ -45,7 +45,7 @@
show = false; 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 /> <slot />
</div> </div>
</Drawer> </Drawer>