fix(links): restore styles changed in bootstrap@4.5.1

This commit is contained in:
Matteo Pagliazzi 2020-08-25 16:17:12 +02:00
parent b21b5a4f4b
commit 9caacc8f6c

View file

@ -15,6 +15,13 @@ body {
color: $gray-200;
}
// Restore the default styling for a elements without an href attribute
// that was changed in bootstrap 4.5.1
a:not([href]), a:not([href]):hover {
color: inherit;
text-decoration: none;
}
a, a:not([href]):not([tabindex]) {
cursor: pointer;