From 67a8872e48be992281aa15c573a6533b3273e735 Mon Sep 17 00:00:00 2001 From: Zuzanna Date: Fri, 13 Mar 2026 11:40:24 +0100 Subject: [PATCH 1/2] #1686 remove form margins --- www/form/app-form.less | 1 + 1 file changed, 1 insertion(+) diff --git a/www/form/app-form.less b/www/form/app-form.less index 37cd22686..63603a853 100644 --- a/www/form/app-form.less +++ b/www/form/app-form.less @@ -773,6 +773,7 @@ .cp-form-block-content { p, ul { + margin-bottom: 0; a { color: @cryptpad_color_link; } From 663acc3f71bf40d7ab8ad81d06b4bad26a575b1a Mon Sep 17 00:00:00 2001 From: Zuzanna Ludzik Date: Wed, 12 Aug 2026 12:26:27 +0200 Subject: [PATCH 2/2] only remove margin from last paragraph --- www/form/app-form.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/www/form/app-form.less b/www/form/app-form.less index 63603a853..ff0fd8e17 100644 --- a/www/form/app-form.less +++ b/www/form/app-form.less @@ -772,8 +772,10 @@ } .cp-form-block-content { - p, ul { + p:last-of-type { margin-bottom: 0; + } + p, ul { a { color: @cryptpad_color_link; }