mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-06 06:58:21 +00:00
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:
parent
598b2dfdba
commit
8cf0b31858
1 changed files with 2 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue