Use $space-s gap in ScheduleFlightsMiniList body
CI / ci (push) Failing after 58s
Deploy / build-and-deploy (push) Failing after 5s

$space-xs wasn't defined in src/styles/_variables.scss, which broke
the SCSS compile when the details page mounted the new mini-list.
This commit is contained in:
2026-04-22 17:33:44 +03:00
parent e48e7436d0
commit 80fe071e1a
@@ -65,6 +65,6 @@
padding: 0 vars.$space-s vars.$space-s vars.$space-s;
display: flex;
flex-direction: column;
gap: vars.$space-xs;
gap: vars.$space-s;
}
}