mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-14 17:25:02 +01:00
23 lines
291 B
CSS
23 lines
291 B
CSS
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.text {
|
|
display: flex;
|
|
font-size: var(--font-size-normal);
|
|
}
|
|
|
|
.value {
|
|
font-weight: 600;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.dot {
|
|
background: var(--green400);
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 100%;
|
|
margin-right: 10px;
|
|
}
|