Web: fix scrollbar on "select a ... to see its details" content
The "fix" is just setting the height to 50% instead of 100%, as the latter will make it as big as the entire column; that causes the scrollbar to show, as the column title isn't taken into account.
This commit is contained in:
parent
131298f5e8
commit
81501ea41b
@ -285,9 +285,8 @@ footer {
|
|||||||
color: var(--color-text-hint);
|
color: var(--color-text-hint);
|
||||||
display: flex;
|
display: flex;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
height: 100%;
|
height: 50%;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.indicator {
|
.indicator {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user