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 ">
|
<Container className="flex items-center justify-between ">
|
||||||
<div className="flex items-center gap-8">
|
<div className="flex items-center gap-8">
|
||||||
<Link to="/">
|
<Link to="/">
|
||||||
<Logo />
|
<Logo className="" />
|
||||||
</Link>
|
</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) =>
|
{nav.slice(3, 6).map((item) =>
|
||||||
!item.drop ? (
|
!item.drop ? (
|
||||||
<Link
|
<Link
|
||||||
|
|
@ -110,7 +110,7 @@ export const Header: FC = () => {
|
||||||
<Button
|
<Button
|
||||||
variant={"secondary"}
|
variant={"secondary"}
|
||||||
size={"sm"}
|
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"}
|
{lang === "ru" ? "Официальная поддержка" : "Official Support"}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
@ -120,7 +120,7 @@ export const Header: FC = () => {
|
||||||
<Button
|
<Button
|
||||||
variant={"secondary"}
|
variant={"secondary"}
|
||||||
size={"sm"}
|
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"}
|
{lang === "ru" ? "Стать спонсором" : "Become a sponsor"}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ interface Props {
|
||||||
|
|
||||||
export const Logo: FC<Props> = ({ className }) => {
|
export const Logo: FC<Props> = ({ className }) => {
|
||||||
return (
|
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" />
|
<img src="/logo.svg" alt="logo" className="size-full object-cover" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue