From bfac9f53dfcca7e0b3eed106e74bfa0d434388aa Mon Sep 17 00:00:00 2001 From: Carsten Graf Date: Fri, 20 Mar 2026 10:56:14 +0100 Subject: [PATCH] =?UTF-8?q?CSS=20f=C3=BCr=20schmale=20bildschirme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/public/index.html b/public/index.html index dfd0b09..5bb8aa9 100644 --- a/public/index.html +++ b/public/index.html @@ -346,6 +346,27 @@ .header h1 { font-size: 1.8rem; } + + /* Schmalbild: Value unter dem Field-Name platzieren + -> beim Umbruch beginnt die nächste Zeile ganz links. */ + .record-field { + flex-direction: column; + align-items: flex-start; + gap: 2px; + } + + .field-name { + min-width: 0; + } + + .field-value { + margin-left: 0; + } + + .copy-btn { + margin-left: 0; + align-self: flex-start; + } }