Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: accessibility problems without category #794

Merged
merged 9 commits into from
Feb 6, 2024
2 changes: 1 addition & 1 deletion src/assets/locales/de/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"main.description": "Wir sind Ihr Partner für moderne und zukunftsorientierte Softwareentwicklung. Mit einer Kombination aus Expertise und Enthusiasmus bringen wir Ihre digitale Vision zum Leben. Wir wissen, dass jeder Kunde einzigartig ist. Deshalb entwickeln und designen wir maßgeschneiderte Softwarelösungen, die perfekt auf Ihre Bedürfnisse abgestimmt sind.",
"main.career.button": "Alle offenen Stellen",
"main.blog.button": "Alle Artikel",
"main.services.button": "Erfahren Sie mehr",
"main.services.button": "Mehr Details zu unseren Leistungen",
"career.mandatory-field": "* Pflichtfeld",
"career.headline": "Bewirb dich jetzt!",
"career.first-name": "Vorname",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/locales/en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"main.description": "We are your partner for modern and future-oriented software development. With a combination of expertise and enthusiasm, we bring your digital vision to life. We know that every customer is unique. That's why we develop and design custom software solutions that are perfectly tailored to your needs.",
"main.career.button": "All vacancies",
"main.blog.button": "All articles",
"main.services.button": "Learn more",
"main.services.button": "More about our services",
"career.headline": "Apply now!",
"career.mandatory-field": "* Mandatory field",
"career.first-name": "First name",
Expand Down
6 changes: 3 additions & 3 deletions src/components/content/leadbox/leadbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,18 +95,18 @@ const IllustrationStyled = styled(Illustration)`
`;

const ContactHeadline = styled.h3`
${TextStyles.textS}
${TextStyles.textR}
margin: 0;
font-weight: bold;
`;

const ContactTitle = styled.p`
${TextStyles.textXS}
${TextStyles.textS}
margin: 0;
`;

const ContactMail = styled(Link)`
${TextStyles.textS}
${TextStyles.textR}
color: ${theme.palette.text.link.default};

&:hover {
Expand Down
1 change: 1 addition & 0 deletions src/components/layout/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ const Header: React.FC<HeaderProps> = (props) => {
<SiteTitle
to={props.siteTitleUrl || '/'}
$lightTheme={Boolean(props.$lightTheme && !isHeaderTransparent)}
aria-label={'Link to ' + props.siteTitle + ' homepage'}
>
<HeaderSwoosh />
{props.siteTitle}
Expand Down
1 change: 1 addition & 0 deletions src/components/layout/with-anchor-hoc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const WithAnchorHOC =
href={'#' + generateAnchorId(props.children)}
id={generateAnchorId(props.children)}
$visible={hoverActive}
aria-hidden={true}
>
<Icon show={'anchor'} />
</ShareSymbol>
Expand Down