为 v-table 组件的表头添加背景模糊效果和背景色,提升视觉效果

This commit is contained in:
jxxghp
2025-05-25 15:01:12 +08:00
parent 139c870f99
commit deaaf1834d

View File

@@ -354,6 +354,11 @@ html.v-overlay-scroll-blocked {
.v-table {
border-radius: 0;
background-color: rgba(var(--v-theme-surface), 0.3);
.v-table__wrapper > table > thead {
backdrop-filter: blur(10px);
background-color: rgba(var(--v-theme-surface), 0.3);
}
}
// 页脚