Initial commit.

This commit is contained in:
Leo
2021-10-18 22:57:11 -05:00
commit d0bfe6c145
11 changed files with 661 additions and 0 deletions

19
scss/bootstrap/_nav.scss Normal file
View File

@@ -0,0 +1,19 @@
// Beautiful nav tabs
.nav-tabs {
margin-bottom: 1rem;
}
.nav-tabs .nav-link {
border: none;
color: #666;
&.active {
color: $primary;
background-color: transparent;
border: none;
border-bottom: 2px solid $primary;
}
&:hover, &:focus {
color: $primary;
}
}