fix: fix keepAlive parameter error (#4194)

* fix: mock server deployment error

* chore: typo
This commit is contained in:
Vben
2024-08-19 23:28:14 +08:00
committed by GitHub
parent 01d60336a6
commit 1db87ff7ce
23 changed files with 115 additions and 101 deletions

View File

@@ -18,6 +18,7 @@ export function useAntdDesignTokens() {
colorBgLayout: '',
colorBgMask: '',
colorBorder: '',
colorBorderSecondary: '',
colorError: '',
colorInfo: '',
colorPrimary: '',
@@ -48,7 +49,8 @@ export function useAntdDesignTokens() {
getCssVariableValue('--primary-foreground');
tokens.colorBorder = getCssVariableValue('--border');
tokens.colorBorderSecondary = tokens.colorBorder =
getCssVariableValue('--border');
tokens.colorBgElevated = getCssVariableValue('--popover');