From f4455d4326669566bc46ded93f995868c7105b7c Mon Sep 17 00:00:00 2001 From: Pranav-Mahesh-Palled Date: Thu, 26 Feb 2026 17:19:15 +0530 Subject: [PATCH] Fix inconsistent marginsbetween Status and Platform sections by adding gap to .mas-app-row flex container --- docs/stylesheets/extra.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 9a7e0d0fe3..0560db67b7 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -268,6 +268,8 @@ img.dark-img { .mas-app-row { display: flex; flex-direction: row; + gap: 1rem; /*Added spacing between children*/ + align-items: flex-start; /*Vertical spacing*/ margin-top: 1em; }