fix(ui): apply border-radius to table corner cells to prevent background bleed

This commit is contained in:
xfy 2026-07-03 17:31:05 +08:00
parent 0dbbc9d813
commit 922d1d0755

View File

@ -409,6 +409,22 @@
white-space: nowrap;
}
.md-content table thead th:first-child {
border-top-left-radius: 16px;
}
.md-content table thead th:last-child {
border-top-right-radius: 16px;
}
.md-content table tbody tr:last-child td:first-child {
border-bottom-left-radius: 16px;
}
.md-content table tbody tr:last-child td:last-child {
border-bottom-right-radius: 16px;
}
.md-content table tbody td {
padding: 16px 24px;
line-height: 1.6;