switched from border bottom for links to text-decoration-color
This commit is contained in:
parent
0c9de62831
commit
f2f300a50e
2 changed files with 10 additions and 6 deletions
|
@ -26,7 +26,7 @@
|
|||
margin-left: 0;
|
||||
a {
|
||||
&.nav-link {
|
||||
padding: 0 0 6px 0;
|
||||
padding: 0 0 2px 0;
|
||||
margin: 0 12px 0 12px;
|
||||
border-left: none;
|
||||
border-top: 6px transparent solid;
|
||||
|
|
|
@ -25,8 +25,9 @@ body {
|
|||
}
|
||||
a {
|
||||
color: rgba($white, 0.75);
|
||||
border-bottom: $gray-600 2px solid;
|
||||
text-decoration: none;
|
||||
// border-bottom: $gray-600 2px solid;
|
||||
// text-decoration: none;
|
||||
text-decoration-color: $gray-600;
|
||||
&.navbar-brand,
|
||||
&.nav-link {
|
||||
border-bottom: none;
|
||||
|
@ -39,8 +40,9 @@ a {
|
|||
}
|
||||
&:hover {
|
||||
color: $primary;
|
||||
text-decoration: none;
|
||||
border-bottom: $secondary 3px solid;
|
||||
// text-decoration: none;
|
||||
// border-bottom: $secondary 3px solid;
|
||||
text-decoration-color: $secondary;
|
||||
&.navbar-brand {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
@ -222,7 +224,9 @@ blockquote {
|
|||
border-bottom: none;
|
||||
&:hover {
|
||||
color: $primary;
|
||||
border-bottom: $secondary 3px solid;
|
||||
// border-bottom: $secondary 3px solid;
|
||||
text-decoration: underline;
|
||||
text-decoration-color: $secondary;
|
||||
}
|
||||
}
|
||||
.post-lede,
|
||||
|
|
Loading…
Reference in a new issue