style: move h3 margin-bottom from inline to CSS

This commit is contained in:
Ferdinand
2026-04-02 10:41:51 +02:00
parent 056d6c92a6
commit b30ff0d7fc
2 changed files with 4 additions and 4 deletions

View File

@@ -84,13 +84,13 @@
<button class="action-btn" id="sammlung-import-btn">Importieren</button> <button class="action-btn" id="sammlung-import-btn">Importieren</button>
</div> </div>
<h3 style="margin-bottom:0.5rem">Favoriten</h3> <h3>Favoriten</h3>
<div id="sammlung-favoriten" style="display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem"></div> <div id="sammlung-favoriten" style="display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem"></div>
<h3 style="margin-bottom:0.5rem">Verlauf (letzte 20)</h3> <h3>Verlauf (letzte 20)</h3>
<div id="sammlung-history" style="display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem"></div> <div id="sammlung-history" style="display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem"></div>
<h3 style="margin-bottom:0.5rem">Farbschemata</h3> <h3>Farbschemata</h3>
<div id="sammlung-schemata"></div> <div id="sammlung-schemata"></div>
</section> </section>
</main> </main>

View File

@@ -139,7 +139,7 @@ button.action-btn:hover { background: #f0f0f0; }
/* --- Finale Styles --- */ /* --- Finale Styles --- */
h2 { font-size: 1.1rem; margin-bottom: 1rem; } h2 { font-size: 1.1rem; margin-bottom: 1rem; }
h3 { font-size: 0.95rem; } h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.tab-content { padding-top: 0.5rem; } .tab-content { padding-top: 0.5rem; }