30 lines
587 B
CSS
30 lines
587 B
CSS
.menu {
|
|
border-radius: 0 0 3px 3px;
|
|
box-shadow: 0 2px 10px 0 $gray-light;
|
|
padding: 20px;
|
|
background-color: white;
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
position: absolute;
|
|
top: 28px;
|
|
left: 0;
|
|
width: 500px;
|
|
z-index: 99;
|
|
}
|
|
|
|
.searchInput {
|
|
& input {
|
|
font-size: 13px !important;
|
|
padding: 5px !important;
|
|
color: $gray-darkest !important;
|
|
font-size: 14px !important;
|
|
background-color: rgba(255, 255, 255, 0.8) !important;
|
|
}
|
|
height: 28px !important;
|
|
width: 280px;
|
|
color: $gray-darkest !important;
|
|
}
|
|
|
|
.fullWidth {
|
|
width: 100% !important;
|
|
}
|