rez-table-listing-mui 2.0.7 → 2.0.8
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
|
@@ -47,7 +47,7 @@ export const TableBodyCell = styled("td", {
|
|
|
47
47
|
wrap?: boolean;
|
|
48
48
|
}>(({ theme, compact, isDragging, wrap }) => ({
|
|
49
49
|
fontSize: theme.typography.pxToRem(14),
|
|
50
|
-
padding: compact ? theme.spacing(0.
|
|
50
|
+
padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
|
|
51
51
|
borderBottom: `1px solid ${theme.palette.grey[200]}`,
|
|
52
52
|
|
|
53
53
|
...(wrap && {
|
|
@@ -96,7 +96,7 @@ export const TableHeadCell = styled("th", {
|
|
|
96
96
|
sticky?: boolean;
|
|
97
97
|
}>(({ theme, compact, isDragging, isPinned, sticky }) => ({
|
|
98
98
|
position: "relative",
|
|
99
|
-
padding: compact ? theme.spacing(0.
|
|
99
|
+
padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
|
|
100
100
|
border: `0.5px solid ${theme.palette.grey[200]}`,
|
|
101
101
|
cursor: "pointer",
|
|
102
102
|
backgroundColor: theme.palette.common.white,
|