Files
web2.0-frontend/src/pages/admin/AdminListCommon.tsx
T
2020-11-24 22:17:45 +02:00

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;