Changed cursor:pointer to cursor:unset on Get started dropdown. (#803)

* Added cursor:unset

* removed !important rule from cursor

* Update layout.less

Looks like there's a class already set up for the dropdown menu button. Updated the property there.
This commit is contained in:
Mike Thomas
2021-05-19 23:36:39 -05:00
committed by GitHub
parent ba6dc0d19c
commit 0b28136997
+3 -2
View File
@@ -22,7 +22,7 @@ html, body {
right: 0;
.header-btn {
color: #ffffff;
cursor: pointer !important;//lesshint-disable-line importantRule
cursor: unset;
font-family: @navigation-font;
font-weight: @bold;
}
@@ -106,7 +106,7 @@ html, body {
border-bottom: 1px solid #e2e4ea;
.header-btn {
color: #192147;
cursor: pointer !important;//lesshint-disable-line importantRule
cursor: unset;
font-family: @navigation-font;
font-weight: @bold;
}
@@ -213,6 +213,7 @@ body.detected-mobile {
// …
}
.dropdown:hover > .btn.btn-link {
color: #6a67fe;
}