mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 08:37:13 +01:00
39 lines
516 B
CSS
39 lines
516 B
CSS
.data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
width: 200px;
|
|
position: relative;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.empty {
|
|
color: var(--font-color300);
|
|
text-align: center;
|
|
}
|
|
|
|
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.type {
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
padding: 0 6px;
|
|
border-radius: 4px;
|
|
border: 1px solid var(--base300);
|
|
}
|
|
|
|
.name {
|
|
color: var(--font-color200);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.value {
|
|
margin: 5px 0;
|
|
}
|