Hero tweak and remove locale switcher text

This commit is contained in:
Henrik Larsson 2023-05-05 10:30:55 +02:00
parent b6dd317293
commit c93e76c567
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ const Hero = ({ variant, title, text, label, image, link }: HeroProps) => {
className="absolute inset-0 h-full w-full object-cover z-10" className="absolute inset-0 h-full w-full object-cover z-10"
/> />
)} )}
<div className="flex flex-col items-start text-high-contrast absolute max-w-sm z-40 left-4 bottom-5 lg:max-w-xl lg:bottom-8 lg:left-8 2xl:left-16 2xl:bottom-16"> <div className="flex flex-col items-start text-high-contrast absolute max-w-md z-50 left-4 bottom-5 lg:max-w-2xl lg:bottom-8 lg:left-8 2xl:left-16 2xl:bottom-16">
{label && ( {label && (
<Text className="mb-1 lg:mb-2" variant="label"> <Text className="mb-1 lg:mb-2" variant="label">
{label} {label}

View File

@ -66,7 +66,7 @@ export default function LocaleSwitcher() {
{locale === "en" && ( {locale === "en" && (
<FlagEn /> <FlagEn />
)} )}
<span>{locale}</span> <span className="sr-only">{locale}</span>
</button> </button>
</DropdownMenuTrigger> </DropdownMenuTrigger>
<DropdownMenuContent align="end" className="drop-shadow-xl"> <DropdownMenuContent align="end" className="drop-shadow-xl">