1
0

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

This commit is contained in:
TAKAHASHI Shuuji 2024-04-15 00:54:44 +09:00
parent f15c8a18d0
commit 2217dd6915
No known key found for this signature in database
GPG Key ID: F15C887632129F5E

View File

@ -76,13 +76,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>