Unverified Commit 6dfe8e02 authored by Martijn Cuppens's avatar Martijn Cuppens Committed by GitHub
Browse files

Fix text decorations (#30492)


Co-authored-by: default avatarXhmikosR <xhmikosr@gmail.com>
parent df707cd7
Showing with 3 additions and 5 deletions
+3 -5
...@@ -57,11 +57,12 @@ ...@@ -57,11 +57,12 @@
padding-bottom: $navbar-brand-padding-y; padding-bottom: $navbar-brand-padding-y;
margin-right: $navbar-brand-margin-right; margin-right: $navbar-brand-margin-right;
@include font-size($navbar-brand-font-size); @include font-size($navbar-brand-font-size);
text-decoration: if($link-decoration == none, null, none);
white-space: nowrap; white-space: nowrap;
&:hover, &:hover,
&:focus { &:focus {
text-decoration: none; text-decoration: if($link-hover-decoration == underline, none, null);
} }
} }
......
...@@ -46,10 +46,7 @@ ...@@ -46,10 +46,7 @@
.algolia-docsearch-suggestion { .algolia-docsearch-suggestion {
display: block; display: block;
text-decoration: none;
&:hover {
text-decoration: none;
}
} }
.algolia-docsearch-suggestion--subcategory-column { .algolia-docsearch-suggestion--subcategory-column {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment