Across the board style fixes and simplifications

Plus bump to v3
This commit is contained in:
daudix
2024-06-18 03:19:37 +03:00
parent 58f4e9975e
commit 52e9cbeda0
22 changed files with 332 additions and 311 deletions

View File

@ -1,34 +1,34 @@
// 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;
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 {
font-weight: bold;
}
th,
td {
padding: 0.5rem 1rem;
}
th,
td {
padding: 0.5rem 1rem;
}
tr {
&:nth-child(even) {
background-color: var(--fg-muted-1);
}
tr {
&:nth-child(even) {
background-color: var(--fg-muted-1);
}
th {
background-color: var(--fg-muted-2);
}
}
th {
background-color: var(--fg-muted-2);
}
}
}
td,
th {
padding: 0;
padding: 0;
}