UX: ensure category breadcrumbs have consistent height (#11966)

This commit is contained in:
Kris 2021-02-03 22:38:12 -05:00 committed by GitHub
parent f39e7fe81d
commit 615a091707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 2 deletions

View File

@ -51,10 +51,19 @@
list-style: none;
padding: 0;
margin: 0;
li {
> li {
// only target the top-level li, not dropdowns
display: flex;
float: left;
margin-bottom: var(--nav-space);
margin-right: 0.5em;
height: 100%;
margin-bottom: 0;
}
.select-kit-header {
align-self: stretch;
height: 100%;
margin-bottom: var(--nav-space);
}
}