Skip to content

Commit

Permalink
update table, ul styles
Browse files Browse the repository at this point in the history
  • Loading branch information
fizzy committed Nov 11, 2022
1 parent d1c7e08 commit 0f274ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,28 @@ const Styles = createGlobalStyle`
main {
margin-top: 1rem;
}
ul {
line-height: 1em;
}
table {
table-layout: fixed;
border-collapse: collapse;
}
thead tr {
border-bottom: 1px solid #ccc;
}
tbody tr:nth-child(odd) {
background-color: #eee;
}
th,
td {
padding: .1em .5em;
}
`;

const WikicordApp: NextPage<AppProps> = ({ Component, pageProps }) => {
Expand Down

0 comments on commit 0f274ec

Please sign in to comment.