Fix alignment for dropdown's placeholder and search text (#6395)

This commit is contained in:
RachelElysia
2022-06-29 09:49:27 -04:00
committed by GitHub
parent 39d89c56bc
commit 9bfb43b2cf
2 changed files with 8 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
- Fix dropdown placeholder and search text alignment
@@ -97,7 +97,7 @@
&--single {
> .Select-control {
.Select-value {
line-height: 40px;
line-height: 36px;
border: none;
top: 1px;
right: 1px;
@@ -223,15 +223,19 @@
.Select-placeholder {
color: $core-fleet-blue;
font-size: $small;
line-height: 40px;
line-height: 36px;
padding: 0 $pad-medium;
box-sizing: border-box;
}
.Select-input {
color: $core-fleet-blue;
font-size: $small;
padding-left: 2px;
box-sizing: border-box;
input {
line-height: 36px;
padding: 1px;
}
}
&.Select--multi {