feat(share-theme): add borders to tables matching the dark/light theme

This commit is contained in:
Wael Nasreddine 2026-01-29 23:57:14 -08:00
parent e0824a5426
commit b08126ec2b

View File

@ -82,7 +82,19 @@ body.type-webView {
}
/* table styles */
.ck-content table {
border-collapse: collapse;
width: 100%;
}
.ck-content table td,
.ck-content table th {
min-width: 120px;
border: 1px solid var(--background-highlight);
padding: 8px;
}
.ck-content table th {
background-color: var(--background-secondary);
font-weight: bold;
}