openreplay/frontend/app/components/shared/DateRangeDropdown/dateRangePopup.module.css
2024-07-02 16:16:35 +05:30

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;
}
}
}