Skip to content

Commit

Permalink
Make card context coloring dependent on dark / light scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Dec 8, 2024
1 parent 852ab1f commit cd6dfc4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/main/handlebars/layout.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -364,18 +364,23 @@
position: absolute;
top: .75rem;
left: .75rem;
background-color: black;
background-color: var(--main-color);
border-radius: .25rem;
color: white;
color: var(--text-color);
padding: .125rem .4rem;
.journey a {
color: var(--text-color);
}
.journey::before {
content: '';
margin-right: .25rem;
}
&.current {
background-color: orange;
color: white;
}
&.current::before {
Expand Down

0 comments on commit cd6dfc4

Please sign in to comment.