🐛(react) fix DatePicker alignments

Due to the previous changes of LabelledBox that allows it to fit dynamic
height containers, we forgot to update the DatePicker resulting in a broken
CSS alignment.
This commit is contained in:
Nathan Vasse
2023-06-19 16:00:45 +02:00
committed by NathanVss
parent 760ffb48e9
commit 501ba1a031
3 changed files with 29 additions and 17 deletions

View File

@@ -11,7 +11,7 @@
border-color: var(--c--components--forms-datepicker--border-color);
border-style: var(--c--components--forms-datepicker--border-style);
display: flex;
align-items: center;
transition: border var(--c--theme--transitions--duration) var(--c--theme--transitions--ease-out);
padding: 0 0.75rem;
gap: 1rem;
@@ -25,6 +25,11 @@
&--clickable {
cursor: pointer;
}
&__icon {
display: flex;
align-items: center;
}
}
&__inner {