@@ -31,11 +31,9 @@ const ContentWrapper = styled(Content)`
31
31
32
32
td ,thead button {
33
33
font-size: ${ remSize ( 10 ) } ;
34
- padding-left: 0;
35
34
text-align: left;
36
35
};
37
36
38
-
39
37
tbody th {
40
38
font-size: ${ remSize ( 16 ) } ;
41
39
width: 100%;
@@ -46,17 +44,20 @@ const ContentWrapper = styled(Content)`
46
44
};
47
45
48
46
tbody td, thead th {
49
- justify-self: stretch ;
47
+ justify-self: center ;
50
48
align-self: flex-end;
51
49
color: ${ prop ( 'primaryTextColor' ) }
52
50
}
53
51
54
- tbody td { justify-self: center; padding-left: ${ remSize ( 12 ) } }
55
52
56
53
thead th svg { margin-left: ${ remSize ( 8 ) } }
57
54
58
- tbody td:last-child { justify-self: end; text-align: end; };
59
- .sketches-table .sketch-list__dropdown-column { min-width: unset };
55
+
56
+ tbody td { justify-self: start; text-align: start; padding: 0 }
57
+ tbody td:nth-child(2) { justify-self: start; text-align: start; padding-left: ${ remSize ( 12 ) } };
58
+ tbody td:last-child { justify-self: end; text-align: end; };
59
+
60
+ .sketch-list__dropdown-column { width: auto; };
60
61
61
62
tbody { height: ${ remSize ( 48 ) } ; }
62
63
@@ -65,8 +66,11 @@ const ContentWrapper = styled(Content)`
65
66
background: ${ prop ( 'SketchList.background' ) } ;
66
67
}
67
68
.sketches-table__row {
68
- background: ${ prop ( 'SketchList.card.background' ) } !important; height: auto
69
+ background: ${ prop ( 'SketchList.card.background' ) } !important;
70
+ height: auto
69
71
}
72
+
73
+
70
74
71
75
tr {
72
76
align-self: start;
@@ -75,17 +79,18 @@ const ContentWrapper = styled(Content)`
75
79
};
76
80
77
81
thead tr {
78
- grid-template-columns: auto ${ remSize ( 100 ) } ${ remSize ( 100 ) } 0fr;
82
+ grid-template-columns: 1fr 1fr 1fr 0fr;
79
83
}
80
84
81
85
tbody tr {
82
86
padding: ${ remSize ( 8 ) } ;
83
87
border-radius: ${ remSize ( 4 ) } ;
84
- grid-template-columns: 5fr 5fr 2fr ;
88
+ grid-template-columns: 5fr 5fr 1fr ;
85
89
grid-template-areas: "name name name" "content content content";
86
90
}
87
91
88
92
.loader-container { position: fixed ; padding-bottom: 32% }
93
+
89
94
` ;
90
95
91
96
const Subheader = styled . div `
0 commit comments