fix(Table): incomplete display of the top border of table when the window is small (#31298)

close #31279
This commit is contained in:
Map1en_ 2021-07-08 09:39:09 +08:00 committed by GitHub
parent 0984bae2cc
commit 44313997da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,9 +12,7 @@
> .@{table-prefix-cls}-container {
// ============================ Content ============================
border: @table-border;
border-right: 0;
border-bottom: 0;
border-left: @table-border;
> .@{table-prefix-cls}-content,
> .@{table-prefix-cls}-header,
@ -67,6 +65,13 @@
}
}
}
> .@{table-prefix-cls}-content,
> .@{table-prefix-cls}-header {
> table {
border-top: @table-border;
}
}
}
&.@{table-prefix-cls}-scroll-horizontal {