HomeDisk/website/components/user/table.tsx

38 lines
441 B
TypeScript

import styled from "styled-components"
const Table = styled.table`
border: 1px solid;
width: 80vw;
border-collapse: collapse;
thead {
background-color: #01754b;
color: white;
}
tr,
td {
border: 1px solid #000;
padding: 8px;
}
td:first-child {
width: 50%;
}
td:last-child {
width: 20%;
}
a {
text-decoration: none;
}
a:hover {
cursor: pointer;
}
`
export default Table