Remove borders around ChannelList table

This commit is contained in:
2025-09-07 01:48:41 -04:00
parent 66986cca51
commit 6b80865d6a
2 changed files with 1 additions and 7 deletions

View File

@@ -21,11 +21,8 @@ export const AppContainer = styled.default.div`
export const Body = styled.default.div` export const Body = styled.default.div`
flex: 1; flex: 1;
margin: 1rem;
padding: 1rem ${Theme.spacing.xlarge}; padding: 1rem ${Theme.spacing.xlarge};
background: ${Theme.colors.gray900}; background: ${Theme.colors.gray900};
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
overflow: hidden; overflow: hidden;
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@@ -37,8 +37,7 @@ export const TH = styled.default.th<{active?: boolean; border?: boolean; width?:
color: ${({active}) => (active ? colors.white : colors.gray500)}; color: ${({active}) => (active ? colors.white : colors.gray500)};
font-size: ${typography.fontSizeS}; font-size: ${typography.fontSizeS};
cursor: pointer; cursor: pointer;
border: 1px solid transparent; border: none;
border-right-color: ${colors.gray700};
& span { & span {
margin-left: .4rem; margin-left: .4rem;
} }
@@ -78,6 +77,4 @@ export const Tbody = styled.default.tbody`
export const TableContainer = styled.default.div` export const TableContainer = styled.default.div`
height: 100%; height: 100%;
overflow: auto; overflow: auto;
border: 1px solid ${colors.gray700};
border-radius: 4px;
`; `;