26 lines
538 B
CSS
26 lines
538 B
CSS
.wrapper {
|
|
background-color: #FFF;
|
|
outline: solid thin #EEE;
|
|
border-radius: .5rem;
|
|
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
& .body {
|
|
display: flex;
|
|
border-bottom: solid thin $gray-light;
|
|
padding: 5px;
|
|
}
|
|
}
|
|
|
|
.preSelections {
|
|
width: 130px;
|
|
background-color: white;
|
|
border-right: solid thin #EEE;
|
|
& > div {
|
|
padding: 8px 10px;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
&:hover {
|
|
background-color: $active-blue;
|
|
}
|
|
}
|
|
}
|
|
|