Skip to content

Commit b8f759a

Browse files
authored
Merge branch 'master' into event-badge
2 parents c11d30f + b8d210f commit b8f759a

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

src/sections/Company/Legal/cookie-notice/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2828
const StyledTableRow = styled(TableRow)(({ theme }) => ({
2929
"&:nth-child(odd)": {
3030
backgroundColor: theme.palette.background.default,
31+
borderRadius: "0px",
3132
},
3233
"&:nth-child(even)": {
3334
backgroundColor: theme.palette.background.secondary,
35+
borderRadius: "0px",
3436
},
3537
}));
3638

@@ -39,7 +41,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
3941
fontSize: "0.975rem",
4042
padding: "0.75rem",
4143
borderBottom: `1px solid ${theme.palette.divider}`,
42-
borderRadius: "4px",
44+
borderRadius: "0px",
4345
}));
4446

4547
const StyledHeaderCell = styled(StyledTableCell)(() => ({

src/sections/Company/Legal/privacy/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2626
const StyledTableRow = styled(TableRow)(({ theme }) => ({
2727
"&:nth-child(odd)": {
2828
backgroundColor: theme.palette.background.default,
29+
borderRadius: 0,
2930
},
3031
"&:nth-child(even)": {
3132
backgroundColor: theme.palette.background.secondary,
33+
borderRadius: 0,
3234
},
3335
}));
3436

@@ -37,7 +39,8 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
3739
fontSize: "0.975rem",
3840
padding: "0.75rem",
3941
borderBottom: `1px solid ${theme.palette.divider}`,
40-
borderRadius: "4px",
42+
borderRadius: 0,
43+
4144
}));
4245

4346
const StyledHeaderCell = styled(StyledTableCell)(() => ({

src/sections/Company/Legal/sub-processors/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ const StyledTableContainer = styled(TableContainer)(() => ({
2929
const StyledTableRow = styled(TableRow)(({ theme }) => ({
3030
"&:nth-child(odd)": {
3131
backgroundColor: theme.palette.background.default,
32+
borderRadius: "0px",
3233
},
3334
"&:nth-child(even)": {
3435
backgroundColor: theme.palette.background.secondary,
36+
borderRadius: "0px",
3537
},
3638
}));
3739

@@ -40,7 +42,7 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
4042
fontSize: "0.975rem",
4143
padding: "0.75rem",
4244
borderBottom: `1px solid ${theme.palette.divider}`,
43-
borderRadius: "4px",
45+
borderRadius: "0px",
4446
}));
4547

4648
const StyledHeaderCell = styled(StyledTableCell)(() => ({

0 commit comments

Comments
 (0)