umami/components/common/NoData.module.css
Alexander Klein c5e03cd5d4 fix(styling): "no data" caption not considered in height calculations
Change `NoData` container position to `relative`. Otherwise it won't be considered in `auto` height calculations by browsers.

Also change the way `NoData` content is centered.
2021-02-21 14:39:30 +01:00

12 lines
220 B
CSS

.container {
color: var(--gray500);
font-size: var(--font-size-normal);
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 100%;
height: 100%;
}