update: header color and size logo

This commit is contained in:
Wikzyy
2025-02-20 21:51:48 +07:00
parent 63c7142fce
commit 5b8ba07391
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ const Header = () => {
return ( return (
<header <header
className={clsx( className={clsx(
'flex items-center transition-[height] shrink-0 h-[--tw-header-height] bg-[length:600px] bg-no-repeat', 'flex items-center transition-[height] shrink-0 h-[--tw-header-height] bg-[length:600px] bg-no-repeat bg-red-600',
headerSticky && headerSticky &&
'transition-[height] fixed z-10 top-0 left-0 right-0 shadow-sm backdrop-blur-md bg-white/70 dark:bg-coal-500/70 dark:border-b dark:border-b-coal-100' 'transition-[height] fixed z-10 top-0 left-0 right-0 shadow-sm backdrop-blur-md bg-white/70 dark:bg-coal-500/70 dark:border-b dark:border-b-coal-100'
)} )}

View File

@ -44,7 +44,7 @@ const HeaderLogo = () => {
/> */} /> */}
<img <img
src={toAbsoluteUrl('/media/app/app-logo.png')} src={toAbsoluteUrl('/media/app/app-logo.png')}
className="dark:hidden h-10" className="dark:hidden h-14"
alt="logo" alt="logo"
/> />
<img <img
@ -55,7 +55,7 @@ const HeaderLogo = () => {
</Link> </Link>
<div className="flex items-center"> <div className="flex items-center">
<h3 className="text-gray-700 text-base hidden md:block">TPAY Dashboard Portal</h3> <h3 className="text-gray-50 text-xl hidden md:block">TPAY Dashboard Portal</h3>
</div> </div>
</div> </div>
); );