From 6b80865d6a0ad08b5090ec2fb41ce9ef2ed48576 Mon Sep 17 00:00:00 2001 From: Alexander Zinn Date: Sun, 7 Sep 2025 01:48:41 -0400 Subject: [PATCH] Remove borders around ChannelList table --- src/components/layout/index.tsx | 3 --- src/components/table/style.tsx | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/components/layout/index.tsx b/src/components/layout/index.tsx index 62712dd..682491e 100644 --- a/src/components/layout/index.tsx +++ b/src/components/layout/index.tsx @@ -21,11 +21,8 @@ export const AppContainer = styled.default.div` export const Body = styled.default.div` flex: 1; - margin: 1rem; padding: 1rem ${Theme.spacing.xlarge}; background: ${Theme.colors.gray900}; - border-radius: 8px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); overflow: hidden; display: flex; flex-direction: column; diff --git a/src/components/table/style.tsx b/src/components/table/style.tsx index 09ecb42..571ee3c 100644 --- a/src/components/table/style.tsx +++ b/src/components/table/style.tsx @@ -37,8 +37,7 @@ export const TH = styled.default.th<{active?: boolean; border?: boolean; width?: color: ${({active}) => (active ? colors.white : colors.gray500)}; font-size: ${typography.fontSizeS}; cursor: pointer; - border: 1px solid transparent; - border-right-color: ${colors.gray700}; + border: none; & span { margin-left: .4rem; } @@ -78,6 +77,4 @@ export const Tbody = styled.default.tbody` export const TableContainer = styled.default.div` height: 100%; overflow: auto; - border: 1px solid ${colors.gray700}; - border-radius: 4px; `;