Fix some image paths

This commit is contained in:
mDuo13
2021-07-12 16:36:12 -07:00
parent 472987fa59
commit 88cb4f45de
4 changed files with 8 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@@ -73,7 +73,7 @@ button[disabled="disabled"] {
} }
&::after { &::after {
display: inline-block; display: inline-block;
content: url(../../img/icons/arrow-right.svg); content: url(../img/icons/arrow-right.svg);
vertical-align: middle; vertical-align: middle;
padding-left: 8px; padding-left: 8px;
-webkit-transition: transform 0.3s ease-out; -webkit-transition: transform 0.3s ease-out;

View File

@@ -22,11 +22,6 @@ h1, h2, h3, h4, h5, h6,
} }
// Colors // Colors
$navbar-light-color: $dark;
$navbar-light-hover-color: $secondary;
$navbar-light-active-color: $primary;
.search, .input-group { .search, .input-group {
.input-group-text { .input-group-text {
background-color: $gray-200; background-color: $gray-200;
@@ -75,9 +70,13 @@ a, nav a {
} }
} }
&:hover { &:hover, &:active, &.active {
color: $light-link-hover-color; color: $light-link-hover-color;
} }
&:focus {
background-color: transparent;
}
} }
.longform { .longform {