Replace header bg with border (#5380)

This commit is contained in:
Anbraten 2025-07-31 23:44:13 +02:00 committed by GitHub
parent 1081d7dc63
commit f6b3e16e4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,6 @@
<template>
<header
class="border-wp-background-400 bg-wp-background-100 text-wp-text-100 dark:border-wp-background-100 dark:bg-wp-background-300 border-b"
:class="{ 'md:px-4': fullWidth }"
>
<Container :full-width="fullWidth" class="py-0!">
<header class="border-wp-background-400 text-wp-text-100" :class="{ 'md:px-4': fullWidth }">
<Container :full-width="fullWidth" class="relative py-0!">
<div class="flex w-full flex-col gap-2 py-3 md:flex-row md:items-center md:justify-between md:gap-10">
<div
class="flex min-h-10 content-start items-center"
@ -47,6 +44,8 @@
<slot name="tabActions" />
</div>
</div>
<div class="bg-wp-background-400 -mt-px h-px w-full rounded-md" />
</Container>
</header>
</template>