Skip to content

Commit

Permalink
fix: change background color
Browse files Browse the repository at this point in the history
  • Loading branch information
zumuta committed Nov 30, 2024
1 parent 0a16cb7 commit c0a2f1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/packages/kwai-ui/src/nav/KwaiMenubar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const menuItems = computed(() => {
<template>
<Menubar
:model="menuItems"
class="bg-primary w-full lg:px-6 lg:mx-auto lg:max-w-6xl"
class="bg-primary-400 w-full lg:px-6 lg:mx-auto lg:max-w-6xl"
>
<template #item="{ item, props, hasSubmenu }">
<router-link
Expand Down Expand Up @@ -59,6 +59,6 @@ const menuItems = computed(() => {

<style scoped>
:deep(.p-menubar-item-link) {
@apply bg-primary-400 hover:bg-primary-600 rounded text-surface-0;
@apply bg-primary-500 hover:bg-primary-600 rounded text-surface-0;
}
</style>

0 comments on commit c0a2f1d

Please sign in to comment.