Fix tables width

This commit is contained in:
Ettore
2026-05-08 19:53:50 +02:00
parent 5b546f2698
commit bd5403b2d3
2 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
/* ── Tab panes ──────────────────────────────────────────────────────── */
.tab-content { flex: 1; padding: 1.5rem; max-width: 960px; margin: 0 auto; width: 100%; }
.tab-content { flex: 1; padding: 1.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

View File

@@ -147,8 +147,8 @@ label {
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { background: var(--surface2); color: var(--text-muted); font-weight: 600;
text-align: left; padding: .65rem 1rem; border-bottom: 1px solid var(--border); }
td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
text-align: left; padding: .55rem .75rem; border-bottom: 1px solid var(--border); white-space: nowrap; }
td { padding: .55rem .75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
/* ── Badges ────────────────────────────────────────────────────────────────── */