2020-07-31 03:11:43 +00:00
|
|
|
.dropdown {
|
|
|
|
|
position: relative;
|
2020-09-13 18:33:57 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2020-09-13 08:26:54 +00:00
|
|
|
border: 1px solid var(--gray500);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
2020-07-31 03:11:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value {
|
2020-09-13 18:33:57 +00:00
|
|
|
flex: 1;
|
2020-08-08 00:19:42 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2020-09-13 08:26:54 +00:00
|
|
|
font-size: var(--font-size-small);
|
2020-09-13 18:33:57 +00:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
white-space: nowrap;
|
2020-08-08 00:19:42 +00:00
|
|
|
padding: 4px 16px;
|
2020-09-13 18:33:57 +00:00
|
|
|
min-width: 160px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
2020-09-20 08:33:39 +00:00
|
|
|
padding-left: 20px;
|
2020-07-31 03:11:43 +00:00
|
|
|
}
|