File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default {
17
17
< table class = "table-view" style = { { gridTemplateColumns : `repeat(${ state . fields . size + 1 } , 1fr)` } } >
18
18
< thead >
19
19
< tr >
20
- < th > </ th >
20
+ < th > Title </ th >
21
21
{ [ ...state . fields ] . map ( f => < th > { f } </ th > ) }
22
22
</ tr >
23
23
</ thead >
Original file line number Diff line number Diff line change @@ -295,15 +295,22 @@ svg.node-bullet circle#node-collapsed-handle {
295
295
296
296
.table-view {
297
297
display : grid;
298
+ margin-bottom : calc (var (--padding )/ 4 );
298
299
}
299
300
.table-view th {
301
+ border-bottom : solid 1px var (--color-outline-secondary );
302
+ margin-bottom : calc (var (--padding )/ 2 );
303
+ padding-bottom : calc (var (--padding )/ 2 );
300
304
text-align : left;
301
305
}
302
306
.table-view thead ,
303
307
.table-view tbody ,
304
308
.table-view tr {
305
309
display : contents;
306
310
}
311
+ .table-view thead th : first-child {
312
+ padding-left : 24px ;
313
+ }
307
314
308
315
/*------------NOTICES------------*/
309
316
.notice {
You can’t perform that action at this time.
0 commit comments