Change background color

This commit is contained in:
Akira Tempaku 2025-05-25 11:55:52 +09:00
parent 8edf81608f
commit 922a249ead
Signed by: paku
GPG key ID: 5B4E8402BCC50607
2 changed files with 3 additions and 2 deletions

View file

@ -12,7 +12,7 @@
(defcomp ~pc-header ()
(hsx
(header :class "hidden md:flex justify-between py-4 border-b-1 top-0 bg-white"
(header :class "hidden md:flex justify-between py-4 border-b-1 top-0 bg-stone-100"
(p :class "z-20 text-3xl font-bold"
(a :preload "mouseover" :href "/" "skyizwhite"))
(nav :class "flex items-end"
@ -27,7 +27,7 @@
(hsx
(header
:x-data "{ open: false }"
:class "flex md:hidden justify-between py-2 border-b-1 top-0 bg-white"
:class "flex md:hidden justify-between py-2 border-b-1 top-0 bg-stone-100"
(p :class "z-20 text-2xl font-bold"
(a :preload "mousedown" :href "/" "skyizwhite"))
(div

View file

@ -37,4 +37,5 @@
(and (not (dev-mode-p)) "preload"))
:hx-boost "true" :hx-swap "transition:true"
:hx-target-404 "body" :hx-target-5* "body"
:class "bg-stone-100"
(~layout result)))))))))