UX: Allow quick access profile content to scroll (#11639)
This commit is contained in:
parent
118ea89372
commit
5b77c6a5d8
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue