umami/src/components/input/MonthSelect.module.css

23 lines
393 B
CSS
Raw Normal View History

2023-08-16 19:50:28 +02:00
.container {
display: flex;
align-items: center;
justify-content: center;
2023-08-17 12:21:20 +02:00
border: 1px solid var(--base400);
border-radius: var(--border-radius);
2023-08-16 19:50:28 +02:00
}
.input {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}
2023-08-17 12:21:20 +02:00
.popup {
border: 1px solid var(--base400);
background: var(--base50);
border-radius: var(--border-radius);
padding: 20px;
margin-top: 5px;
}