fix: adjust logo and button styles for better alignment and spacing
This commit is contained in:
parent
520f6a1887
commit
ccc7e4ff1f
|
|
@ -68,10 +68,10 @@ export const Header: FC = () => {
|
|||
<Container className="flex items-center justify-between ">
|
||||
<div className="flex items-center gap-8">
|
||||
<Link to="/">
|
||||
<Logo />
|
||||
<Logo className="" />
|
||||
</Link>
|
||||
|
||||
<nav className="lg:flex hidden items-center gap-6 text-white">
|
||||
<nav className="lg:flex hidden items-center gap-3 xl:gap-6 text-white">
|
||||
{nav.slice(3, 6).map((item) =>
|
||||
!item.drop ? (
|
||||
<Link
|
||||
|
|
@ -110,7 +110,7 @@ export const Header: FC = () => {
|
|||
<Button
|
||||
variant={"secondary"}
|
||||
size={"sm"}
|
||||
className="bg-white text-primary hover:bg-white/90"
|
||||
className="bg-white text-primary hover:bg-white/90 h-12 w-fit"
|
||||
>
|
||||
{lang === "ru" ? "Официальная поддержка" : "Official Support"}
|
||||
</Button>
|
||||
|
|
@ -120,7 +120,7 @@ export const Header: FC = () => {
|
|||
<Button
|
||||
variant={"secondary"}
|
||||
size={"sm"}
|
||||
className="bg-teritary text-white hover:bg-teritary/90"
|
||||
className="bg-teritary text-white hover:bg-teritary/90 h-12 w-fit"
|
||||
>
|
||||
{lang === "ru" ? "Стать спонсором" : "Become a sponsor"}
|
||||
</Button>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ interface Props {
|
|||
|
||||
export const Logo: FC<Props> = ({ className }) => {
|
||||
return (
|
||||
<div className={cn("md:h-16 h-10 w-auto", className)}>
|
||||
<div className={cn("xl:h-14 h-10 w-auto", className)}>
|
||||
<img src="/logo.svg" alt="logo" className="size-full object-cover" />
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue