1
0
Fork 0

Fix: date & region selector styling

This commit is contained in:
Aroy-Art 2025-05-16 10:59:04 +02:00
parent 322ae58a6e
commit ede735cbeb
Signed by: Aroy
GPG key ID: 583642324A1D2070
2 changed files with 13 additions and 1 deletions

View file

@ -34,11 +34,22 @@ label {
font-weight: bold;
}
/* Fixed height for input/select elements */
select, input {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
height: 40px; /* Set a fixed height for both */
line-height: 24px; /* Consistent line height */
font-size: 14px; /* Consistent font size */
appearance: auto; /* Preserve native appearance but ensure consistent sizing */
}
.date-input {
width: 100%;
max-width: 100%;
}
.chart-container {

View file

@ -22,7 +22,8 @@
id="date"
[value]="formattedDate"
(change)="onDateChange($event)"
[max]="maxDate">
[max]="maxDate"
class="date-input">
</div>
</div>