Skip to content

Commit

Permalink
Make info-question CSS colors consistent with themes
Browse files Browse the repository at this point in the history
  • Loading branch information
vsicurella committed Jul 19, 2023
1 parent 758be3e commit 96f6136
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ p.section {

/* UI element - question mark with tooltip on hover */
span.info-question {
background: var(--color-background);
color: var(--color-text);
border-color: var(--color-text);
border-radius: 50%;
border-width: 2px;
border-style: solid;
Expand All @@ -293,8 +296,7 @@ span.info-question::after {
content: '?';
}
span.info-question:hover {
background: white;
color: black;
border-color: white;
background: var(--color-text);
color: var(--color-background);
transition: all 0.3s ease;
}

0 comments on commit 96f6136

Please sign in to comment.