sag_components 1.0.1060 → 1.0.1061
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.
|
@@ -245,8 +245,8 @@ const TableWrapper = exports.TableWrapper = _styledComponents.default.div`
|
|
|
245
245
|
`;
|
|
246
246
|
const Table = exports.Table = _styledComponents.default.table`
|
|
247
247
|
font-family: "Poppins", sans-serif;
|
|
248
|
-
width:
|
|
249
|
-
table-layout:
|
|
248
|
+
width: ${props => `${props.tableWidthSize}%`};
|
|
249
|
+
table-layout: fixed;
|
|
250
250
|
position: relative;
|
|
251
251
|
background-color: white;
|
|
252
252
|
border-collapse: collapse;
|
|
@@ -276,8 +276,6 @@ const Td = exports.Td = _styledComponents.default.td`
|
|
|
276
276
|
padding-top: 20px;
|
|
277
277
|
padding-bottom: 20px;
|
|
278
278
|
padding-left: 40px;
|
|
279
|
-
white-space: nowrap; //////
|
|
280
|
-
|
|
281
279
|
`;
|
|
282
280
|
const Tr = exports.Tr = _styledComponents.default.tr`
|
|
283
281
|
border-bottom: 1px solid #f3f4f6;
|