umami/components/input/MonthSelect.module.css

23 lines
393 B
CSS
Raw Normal View History

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