From 325c4cfe330eb225fc274fe058c73e6e66518e09 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell Date: Fri, 8 Dec 2023 08:13:07 +0000 Subject: [PATCH] Fix fullscreen button overlap of stacked grid in replicator --- resources/css/components/fieldtypes/grid.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/css/components/fieldtypes/grid.css b/resources/css/components/fieldtypes/grid.css index f29eaf6c28a..71ef6955586 100644 --- a/resources/css/components/fieldtypes/grid.css +++ b/resources/css/components/fieldtypes/grid.css @@ -79,3 +79,8 @@ z-index: 998; /* to appear over the top of the rest of the stuff on the page. */ /* too high and it'll be over the top of stacks, etc. */ } + +/* when a stacked grid is inside a replicator the fullscreen button needs some more room */ +.replicator-set-body .grid-stacked { + @apply mt-6; +}