Skip to content

Commit 0eb49d7

Browse files
authored
Added hover effect on NavBar items. (CatsInTech#89)
* Added hover effect on navbar items which fixes CatsInTech#68 * Revert "Added hover effect on navbar items which fixes CatsInTech#68" This reverts commit 3e364da. * added styles to all a tags * Revert "added styles to all a tags" This reverts commit 0127d4b. * Fixed the changes asked in review
1 parent b8e72f7 commit 0eb49d7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

css/style.css

+8
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,17 @@ select.form-control.has-value {
535535
opacity: 1;
536536
}
537537

538+
.navbar-nav.ml-auto.menu li a {
539+
border-radius: 5px;
540+
padding: 5px 10px;
541+
}
542+
538543
.bg-transparent ul li a:hover,
539544
.white-bg.affix ul li a:hover {
540545
opacity: 1;
546+
background-color: #7202bb;
547+
color: #fff;
548+
transition: background-color 0.3s, color 0.3s;
541549
}
542550

543551
.bg-transparent.affix {

0 commit comments

Comments
 (0)