Skip to content
Snippets Groups Projects
Verified Commit b1beb534 authored by Andreas Ellewsen's avatar Andreas Ellewsen
Browse files

Make separators black on sponsor page

parent c05de392
No related branches found
No related tags found
1 merge request!216Reduce use of red in styling
......@@ -46,14 +46,14 @@ interface FrontPageProps {
guests: Guest[]
}
const StyledTableRow = styled(TableRow)(({ theme }) => ({
const StyledTableRow = styled(TableRow)({
borderTop: '0',
borderLeft: '0',
borderRight: '0',
borderBottom: '2px solid',
borderColor: theme.palette.primary.main,
borderColor: 'black',
borderRadius: '0',
}))
})
const StyledAccordion = styled(Accordion)({
borderStyle: 'none',
......@@ -186,9 +186,9 @@ const GuestTable = ({ guests, emptyText }: GuestTableProps) => {
))
)
) : (
<TableRow>
<StyledTableRow>
<TableCell> {emptyText}</TableCell>
</TableRow>
</StyledTableRow>
)}
</TableBody>
</Table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment