Skip to content

Commit

Permalink
Fix missing variables for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
SlyBouhafs authored and tiensonqin committed Feb 24, 2021
1 parent 5b5ab46 commit 8a2230c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/css/common.css
@@ -1,6 +1,6 @@
:root {
--ls-tag-text-opacity: 0.6;
--ls-tag-text-hover-opacity: 0.8;
--ls-tag-text-opacity: 0.8;
--ls-tag-text-hover-opacity: 1;
--ls-page-text-size: 1em;
--ls-page-title-size: 36px;
--ls-font-family: 'Inter';
Expand Down Expand Up @@ -662,11 +662,13 @@ a.tag {
text-decoration: none;
display: inline-block;
cursor: pointer;
opacity: 0.8;
color: var(--ls-tag-text-color, #045591);
opacity: var(--ls-tag-text-opacity, 0.8);
}

a.tag:hover {
opacity: 1;
opacity: var(--ls-tag-text-hover-opacity, 1);
color: var(--ls-tag-text-hover-color, #045591);
}

svg.note {
Expand Down

0 comments on commit 8a2230c

Please sign in to comment.