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(placement): adjust hover style for links #9981

Merged
merged 9 commits into from
May 2, 2024
33 changes: 26 additions & 7 deletions client/src/ui/organisms/placement/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,21 @@ section.place {
}
}

.pong-note {
text-decoration: none;

&:active,
&:link,
&:visited {
text-decoration: underline;
caugner marked this conversation as resolved.
Show resolved Hide resolved
}

&:focus,
&:hover {
text-decoration: none;
}
}

.no-pong {
color: var(--text-secondary);
font-size: 0.6rem;
Expand All @@ -55,6 +70,17 @@ section.place {
padding: 0;
text-decoration: underline;
width: 100%;

&:link,
&:visited {
text-decoration: none;
}

&:active,
&:focus,
&:hover {
text-decoration: underline;
}
}

&.side {
Expand Down Expand Up @@ -125,13 +151,6 @@ section.place {
grid-area: note;
margin: 0 0 auto auto;
padding: 0 0.5rem 0.125rem;
text-decoration: none;

&:hover,
&:focus,
&:active {
text-decoration: underline;
}
}
}

Expand Down
Loading