From 7936ec9fea04efa58f86cf17b3a4fa19e1a13b74 Mon Sep 17 00:00:00 2001 From: Pompette Date: Fri, 14 Oct 2022 19:43:10 +0200 Subject: [PATCH] fix(ui): alignment of markdown description in parameter/response columns (#8214) --- src/style/_table.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/style/_table.scss b/src/style/_table.scss index efda2e92beb..3cd128133e7 100644 --- a/src/style/_table.scss +++ b/src/style/_table.scss @@ -100,6 +100,12 @@ table select { border-width: 1px; } + + .markdown { + p { + margin: 0; + } + } } .parameter__name @@ -179,6 +185,12 @@ table .response-col_description { width: 99%; // forces other columns to shrink to their content widths + + .markdown { + p { + margin: 0; + } + } } .response-col_links {