Files
web2.0-frontend/src/pages/admin/AdminListCommon.tsx
T
2020-11-24 21:46:12 +02:00

22 lines
344 B
TypeScript

import styled from "styled-components";
import { colors } from "@theme/colors";
const Main = styled.main`
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;