Add large table component preview

This commit is contained in:
2026-06-04 17:59:02 +02:00
parent fb00d89fe3
commit 90c997a855
2 changed files with 124 additions and 0 deletions
+23
View File
@@ -67,3 +67,26 @@
background: var(--surface-data-table-help-icon);
}
.sg-large-table {
width: 100%;
}
.sg-large-table__row {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
align-items: stretch;
gap: 0;
width: 100%;
}
.sg-large-table__row--header {
font-weight: var(--font-weight-semibold);
}
.sg-large-table__cell {
min-width: 0;
padding: 0 var(--spacing-small);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}