Hightlight color.

This commit is contained in:
2024-05-28 17:15:26 +02:00
parent 8952108bb5
commit a92da686c5
3 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
$borderRadius: 8px;
$textColor: #0f0f0f;
$highlight: #d76f30;
$highlight: #82b3db;
* {
box-sizing: border-box;
@@ -41,9 +41,11 @@ nav {
border: 1px solid $highlight;
color: $textColor;
transition: all 0.3s;
color: $highlight;
&:hover {
background: $highlight;
color: #fff;
}
}
}