Skip to content

Commit

Permalink
Added active state to NavLink
Browse files Browse the repository at this point in the history
  • Loading branch information
aliofye committed Jan 17, 2025
1 parent c3a7db6 commit 5ee9c9d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/web/app/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ a:hover {
color: #535bf2;
}

a.active {
color: #ffffff;
}

h1 {
font-size: 3.2em;
line-height: 1.1;
Expand Down Expand Up @@ -66,7 +70,6 @@ input:focus {
}

@media (prefers-color-scheme: light) {
#root,
body {
color: #213547;
background-color: #f5f5f5;
Expand All @@ -76,6 +79,10 @@ input:focus {
color: #747bff;
}

a.active {
color: #000000;
}

input {
color: #213547;
background-color: rgba(255, 255, 255, 0.8);
Expand Down

0 comments on commit 5ee9c9d

Please sign in to comment.