Skip to content

Commit

Permalink
Various a11y improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
lsolcher committed Sep 24, 2024
1 parent dd4dd32 commit 15f59a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/dito/app/resources/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ export const header = {

const stepNKR = {
headline: {
text: "Prüfung durch den NKR",
text: "Prüfung durch den NKR (Nationaler Normenkontrollrat)",
},
content: `Der NKR (Nationaler Normenkontrollrat) prüft Ihr Vorhaben hinsichtlich der Berücksichtigung der Prinzipien digitaltauglicher Gesetzgebung. Bei Fragen wird der NKR auf Sie zukommen.`,
content: `Der NKR prüft Ihr Vorhaben hinsichtlich der Berücksichtigung der Prinzipien digitaltauglicher Gesetzgebung. Bei Fragen wird der NKR auf Sie zukommen.`,
};
export const steps = {
preCheck: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function PreCheckNavigation({
const questions = preCheck.questions;

return (
<nav aria-label="Navigation Vorprüfung" className="precheck-navigation">
<nav aria-label="Alle Fragen" className="precheck-navigation">
<ul className="pl-0">
{questions.map((q: TQuestion, idx) => {
const isDone = q.id in answers;
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Footer({ links }: Readonly<{ links: LinkProps[] }>) {
);

return (
<footer className="text-base leading-snug">
<footer className="text-base leading-snug" aria-label="Seitenfußbereich">
<Container paddingTop="48">
<div className="flex flex-wrap items-start justify-between gap-y-32">
<div className="flex flex-col flex-col-reverse sm:flex-row gap-y-16 gap-x-16">
Expand Down

0 comments on commit 15f59a6

Please sign in to comment.