fix: table header cell text-align
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-09-27 15:01:55 +08:00
parent f8377ebdad
commit 67a1c80696
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -148,3 +148,15 @@ label {
padding: 1em; padding: 1em;
background-color: rgba(var(--bs-light-rgb)); background-color: rgba(var(--bs-light-rgb));
} }
.markdown-body table th[align='left'] {
text-align: left;
}
.markdown-body table th[align='center'] {
text-align: center;
}
.markdown-body table th[align='right'] {
text-align: right;
}