Aligned collapsed header dropdown item styles

Previously the desktop-visible items would style different when collapsed
into the expanded dropdown menu, compared to existing items.
This commit is contained in:
Dan Brown 2022-05-17 14:27:58 +01:00
parent 4866a3a198
commit cb1c2db282
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -194,23 +194,29 @@ header .search-box {
overflow: hidden;
position: absolute;
box-shadow: $bs-hover;
margin-top: -$-xs;
margin-top: $-m;
padding: $-xs 0;
&.show {
display: block;
}
}
header .links a, header .dropdown-container ul li a, header .dropdown-container ul li button {
text-align: start;
display: block;
padding: $-s $-m;
display: grid;
align-items: center;
padding: 8px $-m;
gap: $-m;
color: $text-dark;
grid-template-columns: 16px auto;
line-height: 1.4;
@include lightDark(color, $text-dark, #eee);
svg {
margin-inline-end: $-s;
width: 16px;
}
&:hover {
@include lightDark(background-color, #eee, #333);
@include lightDark(color, #000, #fff);
background-color: var(--color-primary-light);
color: var(--color-primary);
text-decoration: none;
}
&:focus {