From a86eee5e6f0b38111306d0cc8f3a435196d3cc64 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Fri, 31 Jul 2026 22:53:37 +0100 Subject: [PATCH] Add padding to descriptions rows in App.css for improved layout - Introduced padding-bottom to .ant-descriptions-row > td within .ant-descriptions-small to enhance spacing and visual consistency in the descriptions component. --- assets/stylesheets/App.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index 5ea8bdc..3459759 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -792,6 +792,10 @@ span.ant-skeleton-input.ant-skeleton-input-sm.text-skeleton { top: 0; } +.ant-descriptions-small .ant-descriptions-row > td { + padding-bottom: 6px; +} + .minimal-code-block-editor .ant-typography pre { margin: 0; }