mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
fix: correct border radius when table has title (#36384)
This commit is contained in:
parent
cff413eb6c
commit
e503f9d5ae
@ -1,5 +1,5 @@
|
||||
// ================================================================
|
||||
// = Border Radio =
|
||||
// = Border Radius =
|
||||
// ================================================================
|
||||
.@{table-prefix-cls} {
|
||||
/* title + table */
|
||||
@ -11,13 +11,17 @@
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
|
||||
table > thead > tr:first-child {
|
||||
th:first-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
table {
|
||||
border-radius: 0;
|
||||
|
||||
th:last-child {
|
||||
border-radius: 0;
|
||||
> thead > tr:first-child {
|
||||
th:first-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
th:last-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user