Skip to content

Commit aac5356

Browse files
committed
remove border radius from table
1 parent c4dc618 commit aac5356

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/components/blocked-pubkeys/BlockedPubkeys.styles.ts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@ export const TableRoot = styled(Table)`
99
& .ant-table-thead .ant-table-cell {
1010
background-color: var(--secondary-background-color);
1111
}
12-
.ant-table-container table > thead > tr:first-child th:last-child {
13-
border-top-right-radius: 12px;
14-
}
15-
.ant-table-container table > thead > tr:first-child th:first-child {
16-
border-top-left-radius: 12px;
17-
}
12+
1813
.ant-table-tbody {
1914
background-color: var(--layout-sider-bg-color);
2015
}
@@ -38,7 +33,13 @@ export const BaseColRoot = styled(BaseCol)`
3833
height: 100%;
3934
`;
4035
export const TableContainer = styled.div`
41-
border-radius: 8px;
36+
border-radius: 12px;
37+
margin: 0 2px;
38+
padding-top: 0.4rem;
39+
padding-bottom: 2rem;
40+
background-color: var(--secondary-background-color);
41+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
42+
border: 1px solid var(--border-base-color);
4243
`;
4344
export const CardRoot = styled(Card)`
4445
border: none;
@@ -110,4 +111,5 @@ export const EmptyList = styled.div`
110111
align-items: center;
111112
justify-content: center;
112113
color: var(--text-light-color);
114+
border-bottom: none;
113115
`;

0 commit comments

Comments
 (0)