umami/components/common/Dropdown.module.css

29 lines
435 B
CSS
Raw Normal View History

2020-07-31 05:11:43 +02:00
.dropdown {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
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 {
flex: 1;
display: flex;
justify-content: space-between;
font-size: var(--font-size-sm);
flex-wrap: nowrap;
white-space: nowrap;
padding: 4px 16px;
min-width: 160px;
}
2020-09-27 09:51:29 +02:00
.text {
flex: 1;
}
.icon {
2020-09-20 10:33:39 +02:00
padding-left: 20px;
2020-07-31 05:11:43 +02:00
}