From b22f2ebefed0549dc6e160fbe780143a77e66a8c Mon Sep 17 00:00:00 2001 From: LyNguyen Date: Mon, 15 Apr 2024 08:52:18 +0700 Subject: [PATCH] Fix layout with display: none --- css/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/style.css b/css/style.css index 5ee16e67..02cbb4ad 100644 --- a/css/style.css +++ b/css/style.css @@ -5,6 +5,9 @@ .rwmb-field { display: flex; } +.rwmb-field[data-visible="visible"] { + display: flex !important; +} .rwmb-field:not(:last-of-type) { margin: 0 0 12px; }