From d496269a7d2625286b0713767940aab37fb29bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20de=20Alba?= Date: Fri, 12 May 2023 12:13:46 +0200 Subject: [PATCH] fix: unresponsive add page (#4507) (#4753) Co-authored-by: Sudhanshu Tripathi Co-authored-by: Steve Piercy --- news/4506.bugfix | 1 + theme/themes/pastanaga/extras/sidebar.less | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 news/4506.bugfix diff --git a/news/4506.bugfix b/news/4506.bugfix new file mode 100644 index 0000000000..9e1c31dbf3 --- /dev/null +++ b/news/4506.bugfix @@ -0,0 +1 @@ +The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 diff --git a/theme/themes/pastanaga/extras/sidebar.less b/theme/themes/pastanaga/extras/sidebar.less index 3310cd779c..f34c08476a 100644 --- a/theme/themes/pastanaga/extras/sidebar.less +++ b/theme/themes/pastanaga/extras/sidebar.less @@ -489,3 +489,7 @@ margin-left: 5px; } } + +.formtabs { + flex-wrap: wrap; +}