fix(Dashboard): "no data" caption not rendered
Change styling of `DataTable` to make `NoData` visible again. Refs #498pull/499/head
parent
a981fa30c7
commit
98a60d0d3e
|
@ -1,14 +1,15 @@
|
||||||
.table {
|
.table {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
font-size: var(--font-size-small);
|
font-size: var(--font-size-small);
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-direction: column;
|
grid-template-rows: fit-content(100%) auto;
|
||||||
flex: 1;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue