UX: Allow quick access profile content to scroll (#11639)

This commit is contained in:
Kris 2021-01-06 13:32:20 -05:00 committed by GitHub
parent 118ea89372
commit 5b77c6a5d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -343,6 +343,14 @@
@include unselectable; @include unselectable;
&.quick-access-profile { &.quick-access-profile {
display: inline;
overflow-y: auto; // There's no "show all" for this content, so it always needs to be scrollable
ul {
display: inline;
a {
box-sizing: border-box; // without this you end up with horizontal scroll
}
}
li:not(.show-all) a { li:not(.show-all) a {
color: var(--primary); color: var(--primary);
display: flex; display: flex;