Skip to content

Commit

Permalink
feat: refine dark mode for menu divider (#191)
Browse files Browse the repository at this point in the history
为菜单子目录添加 `dark:divide-slate-600`,使其在暗色模式下表现正常

```release-note
None
```
  • Loading branch information
Anyexyz authored Oct 14, 2024
1 parent f1417cb commit e9c8729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/modules/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="menu-dropdown absolute left-0 z-10 mt-2 w-40 divide-y divide-gray-50 overflow-hidden rounded bg-white shadow dark:bg-slate-700"
class="menu-dropdown absolute left-0 z-10 mt-2 w-40 divide-y divide-gray-50 overflow-hidden rounded bg-white shadow dark:divide-slate-600 dark:bg-slate-700"
>
<li
th:each="childMenuItem : ${menuItem.children}"
Expand Down

0 comments on commit e9c8729

Please sign in to comment.