Make alt text readable when the logo doesn't load

We were displaying the alt text using the same color as the background
color, which made it impossible to read it when the logo didn't load
(for whatever reason).

Using the same color as the text, like done in the admin section, solves
the issue.
This commit is contained in:
Javi Martín
2023-09-28 17:59:48 +02:00
parent 19bb08f7b8
commit ae4b07de41
2 changed files with 4 additions and 1 deletions

View File

@@ -506,6 +506,10 @@ body > header,
padding: rem-calc(6) 0;
text-align: center;
}
h1 a {
color: inherit;
}
}
.public > .wrapper > header,

View File

@@ -54,7 +54,6 @@
}
a {
color: inherit;
display: inline-block;
font-family: "Lato" !important;
font-size: rem-calc(24);