From 5cf8c4325b5ea79d1a5b1136c4899852fd7846d2 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Mon, 29 Jul 2024 18:53:11 +0200 Subject: [PATCH] :truck: make form container styles global --- page/start/style.css | 12 ------------ page/style.css | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/page/start/style.css b/page/start/style.css index a815425..feaab14 100644 --- a/page/start/style.css +++ b/page/start/style.css @@ -13,18 +13,6 @@ flex-shrink: 1; } -.form-container { - position: relative; - width: 100%; -} - -.form { - display: flex; - flex-direction: column; - flex-wrap: nowrap; - gap: 1rem; -} - #newsletter-signup-form-mail-address { min-width: 18rem; } diff --git a/page/style.css b/page/style.css index dae3614..70fbde7 100644 --- a/page/style.css +++ b/page/style.css @@ -636,6 +636,18 @@ a.box:hover { /* FORM ELEMENTS */ +.form-container { + position: relative; + width: 100%; +} + +.form { + display: flex; + flex-direction: column; + flex-wrap: nowrap; + gap: 1rem; +} + .key-value-pair { display: flex; flex-direction: row;