+
-
diff --git a/packages/fighting-eslint-config/index.js b/packages/fighting-eslint-config/index.js
index 0581ead415..d0c814d197 100644
--- a/packages/fighting-eslint-config/index.js
+++ b/packages/fighting-eslint-config/index.js
@@ -267,7 +267,7 @@ module.exports = {
// 禁止未使用的变量 https://typescript-eslint.io/rules/no-unused-vars
'@typescript-eslint/no-unused-vars': 'error',
// 不可以有 any https://typescript-eslint.io/rules/no-explicit-any/
- '@typescript-eslint/no-explicit-any': 'error',
+ '@typescript-eslint/no-explicit-any': 'off',
// 不可以有 require https://typescript-eslint.io/rules/no-var-requires/
'@typescript-eslint/no-var-requires': 'error',
// 带有默认值的函数参数在最后 https://typescript-eslint.io/rules/default-param-last
diff --git a/packages/fighting-theme/src/table.scss b/packages/fighting-theme/src/table.scss
index 854c24682f..e3a4e18b6e 100644
--- a/packages/fighting-theme/src/table.scss
+++ b/packages/fighting-theme/src/table.scss
@@ -1,26 +1,20 @@
.f-table {
+ display: block;
+ position: relative;
+ width: 100%;
+
// 主容器
&__container {
position: relative;
box-sizing: border-box;
overflow: hidden;
background-color: var(--table-bg-color, #fff);
+ width: 100%;
// 身体
.f-table__body {
height: var(--table-height);
overflow: auto;
-
- // 滚动条
- &::-webkit-scrollbar {
- width: 7px;
- }
-
- // 滚动滑块
- &::-webkit-scrollbar-thumb {
- background-color: #ddd;
- border-radius: 6px;
- }
}
// table 公共样式
@@ -32,6 +26,7 @@
text-align: left;
display: inline-table;
+ // 头部
thead {
background-color: var(--table-head-bg-color, #f7f7f7);
font-size: 16px;
@@ -55,6 +50,7 @@
}
}
+ // 身体
tbody {
font-size: 16px;
color: #4e4e4e;