Skip to content

Commit

Permalink
fix(app): change border color for list view in public talks page
Browse files Browse the repository at this point in the history
  • Loading branch information
FussuChalice committed Nov 29, 2024
1 parent d21e6fc commit e957090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/table/TableHead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const TableHead = (props: EnhancedTableProps) => {
sortDirection={orderBy === headCell.id ? order : false}
sx={{
backgroundColor: 'var(--accent-100)',
borderColor: 'rgba(224, 224, 224, 1);',
borderColor: 'var(--accent-200);',
...headCell.sx,
}}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const TalksListView = ({ isExpandAll, talks }: TalksListViewType) => {
'& .MuiTableCell-root': {
padding: '8px',
boxSizing: 'content-box',
borderColor: 'var(--accent-200)',
},
}}
>
Expand Down

0 comments on commit e957090

Please sign in to comment.