UX: Reduce the table height (#220)
Prevent the table to have a fixed 1000px height with the horizontal scrollbar at the bottom of a mostly blank section when we have only a few results. This change doesn't interfere with the sticky header.
This commit is contained in:
parent
5a65c15463
commit
d6b94706a0
|
@ -290,7 +290,7 @@ table.group-reports {
|
||||||
section {
|
section {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
height: 1000px;
|
max-height: 1000px;
|
||||||
}
|
}
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in New Issue