refactor: color name

This commit is contained in:
Methapon2001 2024-04-11 14:17:17 +07:00
parent 7afbd2638f
commit 72426aef87
2 changed files with 31 additions and 5 deletions

View file

@ -300,12 +300,12 @@ onMounted(async () => {
<style scoped lang="scss">
.close-btn {
color: hsl(var(--negative));
background-color: hsla(var(--negative) / 0.1);
color: hsl(var(--negative-bg));
background-color: hsla(var(--negative-bg) / 0.1);
&.dark {
background-color: transparent;
border: 1px solid hsl(var(--negative));
border: 1px solid hsl(var(--negative-bg));
}
}