progress on table columns

This commit is contained in:
jeffvli
2025-10-03 17:52:57 -07:00
parent f1f3223922
commit 6ae103850b
10 changed files with 219 additions and 2 deletions
@@ -0,0 +1,21 @@
.container {
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
padding: var(--theme-spacing-xs);
}
.content {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
line-height: 1.3;
}
.container.compact {
padding: var(--theme-spacing-xs);
}