2020-07-31 05:11:43 +02:00
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
2020-09-13 20:33:57 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-12-13 04:45:38 +01:00
|
|
|
border: 1px solid var(--base500);
|
2020-09-13 10:26:54 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
2020-07-31 05:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.value {
|
2020-09-13 20:33:57 +02:00
|
|
|
flex: 1;
|
2020-08-08 02:19:42 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2020-09-13 20:33:57 +02:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
white-space: nowrap;
|
2020-08-08 02:19:42 +02:00
|
|
|
padding: 4px 16px;
|
2020-09-13 20:33:57 +02:00
|
|
|
min-width: 160px;
|
|
|
|
}
|
|
|
|
|
2020-09-27 09:51:29 +02:00
|
|
|
.text {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2020-09-13 20:33:57 +02:00
|
|
|
.icon {
|
2020-09-20 10:33:39 +02:00
|
|
|
padding-left: 20px;
|
2020-07-31 05:11:43 +02:00
|
|
|
}
|