Remove underline hack for breadcrumbs

This commit is contained in:
Martijn Cuppens 2020-03-18 09:07:30 +01:00 committed by XhmikosR
parent 89d90d1f85
commit 910d481062
1 changed files with 1 additions and 5 deletions

View File

@ -17,17 +17,13 @@
padding-left: $breadcrumb-item-padding-x;
&::before {
display: inline-block; // Suppress underlining of the separator in modern browsers
display: inline-block; // Suppress underlining of the separator
padding-right: $breadcrumb-item-padding-x;
color: $breadcrumb-divider-color;
content: escape-svg($breadcrumb-divider);
}
}
+ .breadcrumb-item:hover::before {
text-decoration: none;
}
&.active {
color: $breadcrumb-active-color;
}