Card border-radius 8px→$border-radius (3px) on FlightsMiniList + FullRouteTimeline

This commit is contained in:
2026-04-20 07:07:43 +03:00
parent 6faa01a998
commit 69020946b8
2 changed files with 6 additions and 2 deletions
@@ -1,5 +1,6 @@
@use "../../../../styles/colors" as colors;
@use "../../../../styles/screen" as screen;
@use "../../../../styles/variables" as vars;
.mini-list {
display: flex;
@@ -7,7 +8,10 @@
max-height: calc(100vh - 170px);
overflow-y: auto;
background: colors.$white;
border-radius: 8px;
// Angular's `section.frame` helper uses $border-radius (3px) and a
// subtle box-shadow. Match it so the mini-list card aligns with the
// other left-column cards (filter, search-history).
border-radius: vars.$border-radius;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
// Angular hides the sidebar mini-list on mobile (the main details
@@ -3,7 +3,7 @@
.full-route-timeline {
background: colors.$white;
border-radius: 8px;
border-radius: vars.$border-radius;
padding: vars.$space-l vars.$space-xl;
margin-bottom: vars.$space-l;