veza/apps/web/desy/legacy/css/5-components/tables.css

30 lines
597 B
CSS
Raw Normal View History

2026-01-22 16:23:11 +00:00
/* TABLE */
.table-responsive {
overflow-x: auto;
}
.table {
width: 100%;
border-collapse: collapse;
font-size: var(--text-sm);
}
.table th {
text-align: left;
padding: var(--space-3) var(--space-4);
color: var(--text-dim);
font-family: var(--font-mono);
text-transform: uppercase;
font-size: var(--text-xs);
border-bottom: 1px solid var(--color-void-200);
}
.table td {
padding: var(--space-3) var(--space-4);
border-bottom: 1px solid var(--color-void-200);
color: var(--text-dim);
}
.table tr:last-child td {
border-bottom: none;
}