fix(table): wrong bg-color in fullscreen mode

修复浅色主题下的table在全屏状态时背景颜色不正确的问题
This commit is contained in:
无木
2021-08-10 22:34:41 +08:00
parent 019555be0c
commit 2052eb5a65
3 changed files with 6 additions and 0 deletions

View File

@@ -21,6 +21,10 @@ html[data-theme='light'] {
background-color: #fffbe6;
border: 1px solid #ffe58f;
}
:not(:root):fullscreen::backdrop {
background-color: @layout-body-background !important;
}
}
[data-theme='dark'] {