umami/components/QuickButtons.module.css

21 lines
243 B
CSS
Raw Normal View History

2020-07-30 10:08:21 +02:00
.buttons {
display: flex;
}
.button {
font-size: 12px;
background: #f5f5f5;
padding: 4px 8px;
border-radius: 4px;
margin-right: 10px;
cursor: pointer;
}
.button:hover {
background: #eaeaea;
}
.active {
font-weight: 600;
}