From dfb8a19c53b8a9d0b1bb1d24a5d6f32a219bf32a Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Wed, 16 Apr 2025 17:13:47 +0530 Subject: [PATCH 1/2] fix(minor): shrinking of width of grid --- frappe/public/scss/common/grid.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss index 497dc10309..d518abc1e1 100644 --- a/frappe/public/scss/common/grid.scss +++ b/frappe/public/scss/common/grid.scss @@ -516,6 +516,7 @@ top: 5%; left: 50%; transform: translate(-50%, 0%); + width: -webkit-fill-available; } .grid-form-heading { From 340980402e18c3b401070a282e31dabc2544b654 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Wed, 16 Apr 2025 17:22:36 +0530 Subject: [PATCH 2/2] fix: replace fill-width with 100%(firfox issue) --- frappe/public/scss/common/grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss index d518abc1e1..3ab72f8d29 100644 --- a/frappe/public/scss/common/grid.scss +++ b/frappe/public/scss/common/grid.scss @@ -516,7 +516,7 @@ top: 5%; left: 50%; transform: translate(-50%, 0%); - width: -webkit-fill-available; + width: 100%; } .grid-form-heading {