0.0.150 routes

This commit is contained in:
SBD
2025-02-05 18:47:30 +03:00
parent 97ffcf417e
commit 1188b45c20
3 changed files with 87 additions and 3 deletions

View File

@@ -13,12 +13,79 @@
gap: 5px;
[data-type="location"] {
&:first-of-type{
.w_select_country_header{--select-border-radius: 10px 0 0 10px!important;}
.w_select_country_header{
--select-border-radius: 10px 0 0 10px;
&.closed{
--select-border-radius: 10px 0 0 10px;
}
}
}
.w_select_country_header{
--select-border-radius: 0;
&.closed{
--select-border-radius: 0;
}
}
.w_select_country_header{--select-border-radius: 0!important;}
}
.w_daterangepicker{
--range-picker-border-radius: 0 10px 10px 0!important;
--range-picker-border-radius: 0 10px 10px 0;
}
.field_container{
--label-font-size: 14px;
--label-font-weight: 400;
--label-color: #27242499;
}
@media (max-width: 800px) {
grid-template-columns: repeat(2, 1fr);
[data-type="date"], button {
grid-column: span 2;
height: fit-content;
}
.w_daterangepicker{
--range-picker-border-radius: 0 0 10px 10px;
}
[data-type="location"][data-name="to_city"] {
.w_select_country_header{
--select-border-radius: 0 10px 0 0;
&.closed{
--select-border-radius: 0 10px 0 0;
}
}
}
[data-type="location"][data-name="from_city"] {
.w_select_country_header{
--select-border-radius: 10px 0 0 0;
&.closed{
--select-border-radius: 10px 0 0 0;
}
}
}
}
@media (max-width: 576px) {
grid-template-columns: 1fr;
[data-type="date"], button {
grid-column: unset;
height: fit-content;
}
.w_daterangepicker{
--range-picker-border-radius: 0 0 10px 10px;
}
[data-type="location"][data-name="to_city"] {
.w_select_country_header{
--select-border-radius: 0 0 0 0;
&.closed{
--select-border-radius: 0 10px 0 0;
}
}
}
[data-type="location"][data-name="from_city"] {
.w_select_country_header{
--select-border-radius: 10px 10px 0 0;
&.closed{
--select-border-radius: 10px 10px 0 0;
}
}
}
}
}
button{

View File

@@ -35,6 +35,7 @@
display: block;
color: var(--label-color);
font-weight: var(--label-font-weight);
font-size: var(--label-font-size);
&:has(div){
display: flex;
align-items: center;
@@ -53,6 +54,7 @@
font-family: var(--main-font-family), serif;
box-sizing: border-box;
outline: none;
min-width: 0;
&.dropped{
border: none;
outline: none;

View File

@@ -17,7 +17,22 @@
width: calc(100dvw - 40px);
}
}
@media (max-width: 1440px) {
margin-top: 40px;
}
@media (max-width: 992px) {
grid-template-columns: 20px;
}
@media (max-width: 800px) {
grid-template-columns: 1fr;
}
@media (max-width: 768px) {
margin-top: 40px;
}
@media (max-width: 576px) {
margin-top: 77px;
}
@media (max-width: 360px) {
margin-top: 40px;
}
}