22 lines
343 B
TypeScript
22 lines
343 B
TypeScript
import styled from "styled-components";
|
|
import { colors } from "@theme/colors";
|
|
|
|
const Main = styled.div`
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table,
|
|
th,
|
|
td {
|
|
border: 1px solid ${colors.white};
|
|
padding: 0.5rem;
|
|
|
|
a {
|
|
color: ${colors.orange1};
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Main; |