Fix arrows on select inputs (#5282)

This commit is contained in:
Joshua Ogle 2018-09-06 08:56:09 -06:00 committed by Jeff Mitchell
parent 28b403f153
commit bd286dc24b
1 changed files with 4 additions and 4 deletions

View File

@ -184,16 +184,16 @@ label {
}
}
.select:not(.is-multiple)::after,
.select:not(.is-multiple)::before {
.select:not(.is-multiple)::after {
border-color: $black;
border-width: 2px;
margin-top: 0;
transform: translateY(25%) rotate(-45deg);
transform: translateY(30%) rotate(-45deg);
}
.select:not(.is-multiple)::before {
transform: translateY(-75%) rotate(135deg);
@extend .select:not(.is-multiple)::after;
transform: translateY(-70%) rotate(135deg);
z-index: 5;
}