mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Empty placeholder component. CSS fixes.
This commit is contained in:
parent
cd76cc895f
commit
e309376150
8 changed files with 85 additions and 19 deletions
|
|
@ -1,6 +1,7 @@
|
|||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
|
@ -16,8 +17,19 @@
|
|||
}
|
||||
|
||||
.body {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.body:empty:before {
|
||||
content: 'No data available';
|
||||
color: var(--gray500);
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.row {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue