28 lines
475 B
SCSS
28 lines
475 B
SCSS
.DateSuggest {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
height: 2rem;
|
|
margin-left: 0.5rem;
|
|
|
|
.date-item {
|
|
cursor: var(--custom-cursor, pointer);
|
|
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
|
|
min-width: 8rem;
|
|
margin-top: 0.375rem;
|
|
|
|
font-size: 0.875rem;
|
|
font-weight: var(--font-weight-medium);
|
|
color: var(--color-text-secondary);
|
|
|
|
.icon-calendar {
|
|
margin-right: 0.25rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
}
|