Skip to content

Commit

Permalink
fixed nav icons color on hovering (#917)
Browse files Browse the repository at this point in the history
Co-authored-by: Narayan soni <narayansoni854@gmail.com>
  • Loading branch information
anamika7153 and narayan954 committed Jul 23, 2023
1 parent 634db2b commit 85d49b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
--post-error-boundary: rgba(0, 0, 0, 0.54);
--text-black-only: black;
--dark-post-bg: rgb(255, 255, 255);
--btn-hover: rgb(0, 204, 204);
}

.darkmode {
Expand Down Expand Up @@ -53,6 +54,7 @@
--post-error-boundary: rgba(255, 255, 255, 0.54);
--darkmode-white: white;
--dark-post-bg: #2a323c;
--btn-hover: rgb(0, 204, 204);
}

* {
Expand Down Expand Up @@ -121,7 +123,7 @@ input:focus {
}

.rowConvert:hover {
color: var(--btn-color-hover);
color: var(--btn-hover);
cursor: pointer;
transform: scale(1.04);
}
Expand Down

0 comments on commit 85d49b6

Please sign in to comment.