mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Move active users status.
This commit is contained in:
parent
1648707fc7
commit
c3973f5fb5
@ -29,7 +29,7 @@ export function ActiveUsers({ websiteId, value, refetchInterval = 60000 }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StatusLight variant="success">
|
<StatusLight className={styles.container} variant="success">
|
||||||
<div className={styles.text}>{formatMessage(messages.activeUsers, { x: count })}</div>
|
<div className={styles.text}>{formatMessage(messages.activeUsers, { x: count })}</div>
|
||||||
</StatusLight>
|
</StatusLight>
|
||||||
);
|
);
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-size: var(--font-size-md);
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.value {
|
.value {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user