refactor(editor): Update CSS primitives structure and naming (no-changelog) (#17731)

This commit is contained in:
Giulio Andreini
2025-08-08 11:11:49 +02:00
committed by GitHub
parent c7108f4a06
commit 1f209da6c9
10 changed files with 446 additions and 803 deletions

View File

@@ -341,7 +341,7 @@ function hideGithubButton() {
cursor: pointer;
&:hover {
color: var(--prim-color-primary-shade-100);
color: var(--p-color-primary-420);
}
}
.github-button-container {

View File

@@ -315,7 +315,7 @@ onMounted(async () => {
text-align: center;
canvas {
border: 4px solid var(--prim-gray-10);
border: 4px solid var(--color-qr-code-border);
}
}

View File

@@ -44,7 +44,7 @@ const emit = defineEmits<{
svg {
// ensure enough contrast in both light and dark mode
color: var(--prim-gray-200);
color: var(--p-gray-200);
}
}
}

View File

@@ -110,7 +110,7 @@ const i18n = useI18n();
}
.link:hover {
color: var(--prim-color-primary);
color: var(--color-primary);
text-decoration: none;
}
}

View File

@@ -4,6 +4,6 @@
<style lang="scss" scoped>
i {
color: var(--prim-color-alt-a);
color: var(--color-success);
}
</style>