Skip to content

Commit

Permalink
fix width of server selector
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Jul 10, 2023
1 parent 4023443 commit cc4eae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SystemSettingsFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const newName = ref('')

<template>
<div
class="grid bg-white border-t px-4 items-stretch gap-4"
class="grid bg-white border-t px-4 items-stretch gap-4"
:class="{
'grid-cols-1': !auth.isLoggedIn.value,
'grid-cols-[max-content,max-content,auto]': auth.isLoggedIn.value
Expand All @@ -24,7 +24,7 @@ const newName = ref('')
dense
label="Preferred Server"
:data-list="localApis"
class="min-w-[14ch]"
class="!min-w-[12ch]"
/>
</div>

Expand Down

0 comments on commit cc4eae6

Please sign in to comment.