mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
c5e03cd5d4
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.
12 lines
220 B
CSS
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%;
|
|
}
|