From 1aadc74cbf99fa2217c6f400c18a6b435c398737 Mon Sep 17 00:00:00 2001 From: lcdr Date: Mon, 2 Oct 2023 20:33:16 +0200 Subject: [PATCH] Fix mission list separator The mission/achievement list view includes a separator which is supposed to automatically insert a row between missions and achievements, this worked at one point but now doesn't, not sure what changed. Fixing with a better solution. --- src/app/missions/by-subtype/by-subtype.component.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/missions/by-subtype/by-subtype.component.css b/src/app/missions/by-subtype/by-subtype.component.css index b9630fa..3ea257c 100644 --- a/src/app/missions/by-subtype/by-subtype.component.css +++ b/src/app/missions/by-subtype/by-subtype.component.css @@ -1,6 +1,5 @@ .mission-separator { - break-before: always; - break-after: always; + flex-basis: 100%; height: 2rem; order: 0; }