mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
28 lines
401 B
CSS
28 lines
401 B
CSS
.dropdown {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid var(--base500);
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.value {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
padding: 4px 16px;
|
|
min-width: 160px;
|
|
}
|
|
|
|
.text {
|
|
flex: 1;
|
|
}
|
|
|
|
.icon {
|
|
padding-left: 20px;
|
|
}
|