From c3fc22479a71348d7d7983c3a11d52a23d860778 Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Wed, 30 Oct 2024 08:39:14 +0100 Subject: [PATCH] Apply mb-12 to
elements I think Coolify's design would benefit from a bit more space between groups of content throughout the site. HTML's section elements are a perfect fit to a) semantically group related content and b) add spacing/visual coherence to it at the same time --- resources/css/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/css/app.css b/resources/css/app.css index 0f4f19fb9..73f19de96 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -124,6 +124,10 @@ tr td:first-child { @apply pl-4 pr-3 font-bold sm:pl-6; } +section { + @apply mb-12; +} + .alert-success { @apply flex items-center gap-2 text-success; }