@eturnity/eturnity_reusable_components 1.0.60 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -81,11 +81,15 @@ const TableContainer = styled.table`
|
|
|
81
81
|
background-color: ${(props) => props.theme.colors.grey5};
|
|
82
82
|
cursor: pointer;
|
|
83
83
|
}
|
|
84
|
+
|
|
85
|
+
td {
|
|
86
|
+
height: 40px;
|
|
87
|
+
}
|
|
84
88
|
}
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
th {
|
|
88
|
-
padding: 11px
|
|
92
|
+
padding: 11px 15px;
|
|
89
93
|
background-color: ${(props) => props.theme.colors.blue1};
|
|
90
94
|
|
|
91
95
|
.ordering {
|
|
@@ -154,7 +158,7 @@ const TableContainer = styled.table`
|
|
|
154
158
|
}
|
|
155
159
|
|
|
156
160
|
&.checkbox {
|
|
157
|
-
padding: 7px
|
|
161
|
+
padding: 7px 15px !important;
|
|
158
162
|
width: 40px;
|
|
159
163
|
}
|
|
160
164
|
|