fix(ui): fix and adjust bottom navigation preview on setting page (#2818)

This commit is contained in:
TAKAHASHI Shuuji 2024-10-21 18:33:35 +09:00 committed by GitHub
parent dac42e062c
commit 907657725d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,13 +81,13 @@ function save() {
{{ $t('settings.interface.bottom_nav_instructions') }} {{ $t('settings.interface.bottom_nav_instructions') }}
</p> </p>
<!-- preview --> <!-- preview -->
<div aria-hidden="true" flex="~ gap4 wrap" items-center select-settings h-14 p0> <div aria-hidden="true" flex="~ gap4 wrap" items-center select-settings h-14>
<nav <nav
v-for="availableNavButton in selectedNavButtons" :key="availableNavButton.name" v-for="availableNavButton in selectedNavButtons" :key="availableNavButton.name"
flex="~ 1" items-center justify-center text-xl flex="~ 1" items-center justify-center text-xl
scrollbar-hide overscroll-none scrollbar-hide overscroll-none
> >
<button btn-base :class="availableNavButton.icon" mx-4 tabindex="-1" /> <span :class="availableNavButton.icon" />
</nav> </nav>
</div> </div>