switched from border bottom for links to text-decoration-color

This commit is contained in:
Adam Piontek 2021-07-10 18:07:46 -04:00
parent 0c9de62831
commit f2f300a50e
2 changed files with 10 additions and 6 deletions

View file

@ -26,7 +26,7 @@
margin-left: 0; margin-left: 0;
a { a {
&.nav-link { &.nav-link {
padding: 0 0 6px 0; padding: 0 0 2px 0;
margin: 0 12px 0 12px; margin: 0 12px 0 12px;
border-left: none; border-left: none;
border-top: 6px transparent solid; border-top: 6px transparent solid;

View file

@ -25,8 +25,9 @@ body {
} }
a { a {
color: rgba($white, 0.75); color: rgba($white, 0.75);
border-bottom: $gray-600 2px solid; // border-bottom: $gray-600 2px solid;
text-decoration: none; // text-decoration: none;
text-decoration-color: $gray-600;
&.navbar-brand, &.navbar-brand,
&.nav-link { &.nav-link {
border-bottom: none; border-bottom: none;
@ -39,8 +40,9 @@ a {
} }
&:hover { &:hover {
color: $primary; color: $primary;
text-decoration: none; // text-decoration: none;
border-bottom: $secondary 3px solid; // border-bottom: $secondary 3px solid;
text-decoration-color: $secondary;
&.navbar-brand { &.navbar-brand {
border-bottom: none; border-bottom: none;
} }
@ -222,7 +224,9 @@ blockquote {
border-bottom: none; border-bottom: none;
&:hover { &:hover {
color: $primary; color: $primary;
border-bottom: $secondary 3px solid; // border-bottom: $secondary 3px solid;
text-decoration: underline;
text-decoration-color: $secondary;
} }
} }
.post-lede, .post-lede,