Fix navigation background color: bg-base-100 → bg-base-200
All checks were successful
Build Docker Image / build (push) Successful in 4m10s

This commit is contained in:
Ruslan Bakiev
2026-01-15 13:03:16 +07:00
parent 43158924ab
commit 97f346ba83
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
<template> <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"> <div class="relative flex items-center h-16 px-4 lg:px-6">
<!-- Left: Logo --> <!-- Left: Logo -->
<div class="flex items-center"> <div class="flex items-center">

View File

@@ -1,5 +1,5 @@
<template> <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"> <div class="flex items-center gap-1 py-2 px-4 lg:px-6 overflow-x-auto">
<NuxtLink <NuxtLink
v-for="item in items" v-for="item in items"

View File

@@ -13,7 +13,7 @@
<!-- Content --> <!-- Content -->
<template v-else> <template v-else>
<!-- Search bar slot (sticky third bar - like navigation) --> <!-- 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"> <div class="flex items-center gap-2 h-full">
<!-- Expand button - appears when header collapsed --> <!-- Expand button - appears when header collapsed -->
<button <button