mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-28 04:10:44 -04:00
Fix arrows on select inputs (#5282)
This commit is contained in:
parent
3832fb42c1
commit
e38bc6b5c8
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue