Files
blog/sass/_table.scss
2024-06-12 01:22:33 +03:00

35 lines
537 B
SCSS

// TABLE
table {
box-shadow: var(--edge-highlight);
border-radius: var(--rounded-corner);
border-collapse: collapse;
background-color: var(--fg-muted-1);
width: 100%;
table-layout: fixed;
overflow: hidden;
th {
font-weight: bold;
}
th,
td {
padding: 0.5rem 1rem;
}
tr {
&:nth-child(even) {
background-color: var(--fg-muted-1);
}
th {
background-color: var(--fg-muted-2);
}
}
}
td,
th {
padding: 0;
}