Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit 1e24351

Browse files
fix: table styles
1 parent 0f64139 commit 1e24351

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/v2/components/UI/TableCard/styles.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,17 @@ import getColor from 'v2/utils/getColor';
44
export default makeStyles(theme => ({
55
card: {
66
padding: 7,
7-
background: getColor('grey2')(theme),
7+
background: getColor('grey5')(theme),
88
marginBottom: 1,
9-
borderRight: `1px solid ${getColor('dark')(theme)}`,
9+
marginRight: 12,
1010
'& ul': {
1111
padding: 0,
1212
margin: 0,
1313
display: 'flex',
1414
flexWrap: 'wrap',
1515
'& li': {
1616
padding: 10,
17-
width: '33.33%',
18-
[theme.breakpoints.down('xs')]: {
19-
width: '50%',
20-
},
17+
width: '50%',
2118
'& div:last-child': {
2219
whiteSpace: 'nowrap',
2320
textOverflow: 'ellipsis',

src/v2/components/Validators/Table/styles.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export default makeStyles(theme => ({
3939
[theme.breakpoints.down('sm')]: {
4040
padding: '10px 18px 0',
4141
marginBottom: 10,
42+
borderBottom: 'none'
4243
},
4344
},
4445
link: {

0 commit comments

Comments
 (0)