|
- /*
- * @Author: 赵伟
- * @Date: 2024-04-28 08:47:43
- * @Description: 覆盖 antd 样式
- */
-
- // 设置 Table 可以滑动
- .vertical-scroll-table {
- .ant-table-wrapper {
- height: 100%;
- .ant-spin-nested-loading {
- height: 100%;
-
- .ant-spin-container {
- height: 100%;
-
- .ant-table {
- height: calc(100% - 74px); // 分页控件的高度
-
- .ant-table-container {
- height: 100%;
-
- .ant-table-body {
- overflow-y: auto !important;
- }
- }
- }
- }
- }
- }
- }
-
- // Tabs 样式
- // 删除底部白色横线
- .ant-tabs {
- .ant-tabs-nav::before {
- border: none;
- }
-
- // 删除下边的 margin-bottom
- .ant-tabs-nav {
- margin-bottom: 0;
- }
- }
-
- // 表格样式
- .ant-table-header {
- border: 1px solid rgba(167, 178, 194, 0.17);
- border-bottom: none;
- }
-
- .ant-table-wrapper .ant-table-thead > tr > td {
- background-color: #fff;
- }
|