clean style
All checks were successful
Deploy App / build (push) Successful in 1m11s
Deploy App / deploy (push) Successful in 14s

This commit is contained in:
valere
2025-10-21 22:50:03 +02:00
parent f59c496c5d
commit 82de231548
5 changed files with 22 additions and 43 deletions

View File

@@ -4,20 +4,7 @@
<NuxtPage />
<SearchModal />
<Loader />
<!-- Persistent audio player across routes -->
<Player />
<!-- Mobile-only floating search button -->
<button v-if="$isMobile" @click="ui.openSearch()"
class="fixed bottom-4 right-4 z-50 inline-flex h-12 w-12 items-center justify-center rounded-full bg-esyellow text-slate-800 shadow-lg ring-1 ring-slate-300 hover:brightness-95 active:brightness-90 dark:ring-slate-600"
aria-label="Rechercher">
<svg class="h-6 w-6" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<circle cx="11" cy="11" r="8" />
<path d="m21 21-4.3-4.3" />
</svg>
</button>
</div>
</template>
@@ -34,7 +21,7 @@ const player = usePlayerStore()
const { $isMobile } = useNuxtApp()
useHead({
bodyAttrs: {
class: 'bg-slate-100 dark:bg-slate-900'
class: 'bg-slate-100'
}
})