You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
525 B
SCSS

table {
border-spacing: 0;
border-collapse: collapse;
justify-self: center;
font: inherit;
overflow: hidden;
border-style: hidden !important;
margin: 2rem auto;
min-width: 13rem;
border-radius: 5px;
}
table th,
table td {
padding: 6px 13px;
border: 1px solid #dfe2e5;
font-size: large;
}
table thead tr {
background-color: var(--primary-color);
color: var(--hover-color);
text-align: left;
}
table tbody tr:nth-child(even) {
background-color: var(--bg-0);
}