Table styles

This commit is contained in:
Bojan Mojsilovic 2024-05-31 16:27:09 +02:00
parent 70a935bc6f
commit d32d2af392

View File

@ -168,6 +168,7 @@
font-weight: 400;
line-height: 24px;
padding-left: 12px;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 20px;
border-left: 4px solid var(--text-tertiary);
@ -200,5 +201,37 @@
del {
color: inherit;
}
table {
th {
color: var(--text-primary);
font-size: 16px;
font-weight: 700;
line-height: 24px;
border-bottom: 1px solid var(--text-secondary);
padding: 12px 8px;
* {
margin-bottom: 0;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
}
td {
color: var(--text-primary);
font-size: 16px;
font-weight: 400;
line-height: 24px;
border-bottom: 1px solid var(--subtile-devider);
padding: 12px 8px;
* {
margin-bottom: 0;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
}
}
}
}