0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

website: Improve docs link discoverability (#2462)

... by flipping the underline behavior within articles
This commit is contained in:
Andreas Opferkuch 2021-10-01 17:51:04 +02:00 committed by GitHub
parent c168b4e47a
commit b753b4010f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,10 +67,6 @@ .header-github-link:before {
background: var(--verdaccio-color);
}
a:hover {
color: var(--ifm-color-primary);
}
::selection {
color: var(--ifm-color-white);
background: var(--verdaccio-color);
@ -80,6 +76,18 @@ .main-wrapper {
background-color: var(--grey-lighter);
}
a:hover {
color: var(--ifm-color-primary);
}
article a {
text-decoration: underline;
&:hover {
text-decoration: none;
}
}
a[aria-current='page'] {
/* important because text-decoration none on hover */
text-decoration: underline !important;