39 lines
566 B
SCSS
39 lines
566 B
SCSS
.custom-input-el {
|
|
display: flex;
|
|
gap: 9px;
|
|
align-items: flex-end;
|
|
&.calendar {
|
|
}
|
|
|
|
& .custom-date-btn {
|
|
margin-bottom: 4px;
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
& > svg {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
& .custom-block-content {
|
|
margin-bottom: -20px;
|
|
|
|
& .custom-head-paragraph,
|
|
& .custom-main-paragraph {
|
|
line-height: 20px;
|
|
display: flex;
|
|
gap: 2px;
|
|
}
|
|
|
|
& .custom-head-paragraph {
|
|
font-size: $font-12;
|
|
// opacity: 0.4;
|
|
}
|
|
|
|
& .custom-main-paragraph {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
}
|