fix(grid): fix right fixed table header gutter style (#1542)

This commit is contained in:
gimmyhehe 2024-04-10 15:09:16 +08:00 committed by GitHub
parent fc600470d4
commit e106631d98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@opentiny/vue-theme", "name": "@opentiny/vue-theme",
"version": "3.15.0", "version": "3.15.1",
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.", "description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"main": "index.css", "main": "index.css",
"homepage": "https://opentiny.design/tiny-vue", "homepage": "https://opentiny.design/tiny-vue",
@ -87,4 +87,4 @@
] ]
} }
} }
} }

View File

@ -1003,6 +1003,9 @@
// 部分场景下浏览器缩放比例导致表头和表体错位问题 // 部分场景下浏览器缩放比例导致表头和表体错位问题
th.col__gutter { th.col__gutter {
width: 0; width: 0;
position: sticky;
right: 0;
background-color: var(--ti-grid-header-background-color);
} }
} }