fix(ui): apply border-radius to table corner cells to prevent background bleed
This commit is contained in:
parent
0dbbc9d813
commit
922d1d0755
16
input.css
16
input.css
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user