umami/src/components/metrics/FilterTags.module.css

27 lines
409 B
CSS
Raw Normal View History

2021-11-22 07:00:14 +01:00
.filters {
display: flex;
2023-03-11 02:49:19 +01:00
align-items: center;
gap: 10px;
2021-11-22 07:00:14 +01:00
}
2023-08-26 01:05:02 +02:00
.label {
font-weight: 700;
}
2021-11-22 07:00:14 +01:00
.tag {
2023-03-11 02:49:19 +01:00
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
font-size: var(--font-size-sm);
2023-08-26 01:05:02 +02:00
border: 1px solid var(--blue400);
2023-03-11 02:49:19 +01:00
border-radius: var(--border-radius);
2023-08-26 01:05:02 +02:00
padding: 8px 16px;
2023-03-11 02:49:19 +01:00
cursor: pointer;
2023-08-26 01:05:02 +02:00
background: var(--blue100);
2023-03-11 02:49:19 +01:00
}
.tag:hover {
2023-08-26 01:05:02 +02:00
background: var(--blue200);
2021-11-22 07:00:14 +01:00
}