Remove underline from "More" menu

This commit is contained in:
Jeder 2023-09-04 12:07:57 +02:00 committed by Laura Hausmann
parent fb4848f960
commit 3c0de95e41
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605

View File

@ -139,6 +139,10 @@ function close() {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
> a {
text-decoration: none;
}
> * { > * {
position: relative; position: relative;
display: flex; display: flex;
@ -153,7 +157,6 @@ function close() {
&:focus-visible { &:focus-visible {
color: var(--accent); color: var(--accent);
background: var(--accentedBg); background: var(--accentedBg);
text-decoration: none;
} }
> .icon { > .icon {