umami/components/common/Dot.module.css

23 lines
274 B
CSS
Raw Normal View History

2020-10-15 07:09:00 +02:00
.wrapper {
background: var(--gray50);
margin-right: 10px;
border-radius: 100%;
}
.dot {
background: var(--green400);
width: 10px;
height: 10px;
border-radius: 100%;
}
.dot.small {
width: 8px;
height: 8px;
}
.dot.large {
width: 16px;
height: 16px;
}