Skip to content

Commit

Permalink
some actives
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Jul 9, 2024
1 parent bfc4d2a commit 5bda620
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ const urlShort =
a {
text-decoration: underline;

&:hover {
color: var(--text-color-alt);
}
// &:hover {
// color: var(--text-color-alt);
// }
}

@media (min-width: 768px) {
Expand Down
6 changes: 6 additions & 0 deletions src/styles/color.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
--elem-neutral: rgba(103, 103, 103, 0.265);

--text-color-alt: rgb(114, 114, 114);
--text-color-active: rgb(152, 152, 152);

&.dark {
--text-color: rgb(211, 211, 211);
--text-color-alt: rgb(109, 109, 109);
--text-color-active: rgb(86, 86, 86);
}

color: var(--text-color);
Expand Down Expand Up @@ -45,6 +47,10 @@ a:hover {
color: var(--text-color-alt);
}

a:active {
color: var(--text-color-active);
}

th,
td {
border-color: var(--elem-neutral);
Expand Down

0 comments on commit 5bda620

Please sign in to comment.