FlightsMapFilter exchange button: 35x40 pill with +/-10px margin overlap (Angular .button-change parity)

This commit is contained in:
2026-04-20 14:37:03 +03:00
parent 0665799555
commit 71b836ec7b
@@ -210,21 +210,26 @@
}
}
// Mirrors Angular's `.change-container .button-change` under
// left-accordeon: a 35×40 pill sitting between the two city pickers,
// shifted up/down by $space-m so the button overlaps the two inputs
// rather than sitting in the vertical gap between them.
&__exchange {
align-self: center;
width: 35px;
height: vars.$standard-button-height;
background: transparent;
height: vars.$medium-button-height;
margin-top: vars.$space-m;
margin-bottom: -(vars.$space-m);
background: colors.$white;
border: none;
box-shadow: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.2s;
padding: 0;
&:hover { opacity: 0.7; }
&:hover { background-color: colors.$white; }
}
&__exchange-icon {