Fix dir preview table header width so it still expands to fill whole view (#1737)

My last fix to set `width: fit-content` for the dir preview table header
ended up meaning that if the widget is wider than the table, the header
wouldn't extend to the full width of the widget. Now it will.
This commit is contained in:
Evan Simkowitz 2025-01-14 22:52:57 -08:00 committed by GitHub
parent 598b2dfdba
commit 8cf0b31858
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,8 @@
position: sticky;
top: 0;
z-index: 10;
width: fit-content;
width: 100%;
min-width: fit-content;
border-bottom: 1px solid var(--border-color);
.dir-table-head-row {