Fix navigation background color: bg-base-100 → bg-base-200
All checks were successful
Build Docker Image / build (push) Successful in 4m10s
All checks were successful
Build Docker Image / build (push) Successful in 4m10s
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<header class="bg-base-100 border-b border-base-300">
|
||||
<header class="bg-base-200 border-b border-base-300">
|
||||
<div class="relative flex items-center h-16 px-4 lg:px-6">
|
||||
<!-- Left: Logo -->
|
||||
<div class="flex items-center">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<nav v-if="items.length > 0" class="bg-base-100 border-b border-base-300">
|
||||
<nav v-if="items.length > 0" class="bg-base-200 border-b border-base-300">
|
||||
<div class="flex items-center gap-1 py-2 px-4 lg:px-6 overflow-x-auto">
|
||||
<NuxtLink
|
||||
v-for="item in items"
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<!-- Content -->
|
||||
<template v-else>
|
||||
<!-- Search bar slot (sticky third bar - like navigation) -->
|
||||
<div v-if="$slots.searchBar" class="sticky z-20 h-16 -mx-3 lg:-mx-6 px-3 lg:px-6 bg-base-100 border-b border-base-300" :style="searchBarStyle">
|
||||
<div v-if="$slots.searchBar" class="sticky z-20 h-16 -mx-3 lg:-mx-6 px-3 lg:px-6 bg-base-200 border-b border-base-300" :style="searchBarStyle">
|
||||
<div class="flex items-center gap-2 h-full">
|
||||
<!-- Expand button - appears when header collapsed -->
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user