From 6f6f601ca822a93a9b28e986de2f12d2eccc104e Mon Sep 17 00:00:00 2001 From: nixocio Date: Fri, 25 Jun 2021 15:08:20 -0400 Subject: [PATCH] Fix Job Settings Page Break on Firefox Fix Job Settings Page Break on Firefox Closes: https://github.com/ansible/awx/issues/10332 --- awx/ui_next/src/screens/Setting/SettingList.jsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/awx/ui_next/src/screens/Setting/SettingList.jsx b/awx/ui_next/src/screens/Setting/SettingList.jsx index 4f2f1a91d7..01136bd57c 100644 --- a/awx/ui_next/src/screens/Setting/SettingList.jsx +++ b/awx/ui_next/src/screens/Setting/SettingList.jsx @@ -25,10 +25,11 @@ const SplitLayout = styled(PageSection)` } `; const Card = styled(_Card)` - display: inline-block; - break-inside: avoid; - margin-bottom: 24px; - width: 100%; + && { + display: inline-block; + margin-bottom: 24px; + width: 100%; + } `; const CardHeader = styled(_CardHeader)` && {