fix: refactor CSS variable usage and update ESLint configuration

Co-authored-by: xudeyu444 <xudeyu444@users.noreply.github.com>
Co-authored-by: 奕 <a18355849597@outlook.com>
Co-authored-by: Sylvanysc <Sylvanysc@users.noreply.github.com>
This commit is contained in:
2025-05-29 01:19:14 +08:00
parent f11b7fe5c0
commit 2de03ad67e
2 changed files with 9 additions and 3 deletions

View File

@@ -8,5 +8,6 @@
}
:root {
background-color: var(--p-secondary-50) !important;
--s-background: var(--p-secondary-50);
background-color: var(--s-background) !important;
}

View File

@@ -1,6 +1,11 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
import withNuxt from "./.nuxt/eslint.config.mjs";
export default withNuxt(
// Your custom configs here
)
{
rules: {
"vue/html-self-closing": "off", // Disable self-closing tags rule
},
}
);