From 4e2d0f73ebcbc0aa6852c6de653b0786619500af Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Wed, 25 Jun 2025 16:36:44 +0900 Subject: [PATCH] chore: deleted korean text --- src/components/common/DotSpinner.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/components/common/DotSpinner.vue b/src/components/common/DotSpinner.vue index fc49e515a..0d5797cb9 100644 --- a/src/components/common/DotSpinner.vue +++ b/src/components/common/DotSpinner.vue @@ -107,12 +107,8 @@ const { size = 24, duration = '2s' } = defineProps<{ const colorPaletteStore = useColorPaletteStore() -// Dark theme 상태에 따라 색상 자동 조정 -const color = computed( - () => - colorPaletteStore.completedActivePalette.light_theme - ? '#2C2B30' // light theme: 진한 회색 - : '#D4D4D4' // dark theme: 밝은 회색 +const color = computed(() => + colorPaletteStore.completedActivePalette.light_theme ? '#2C2B30' : '#D4D4D4' ) @@ -132,7 +128,6 @@ const color = computed( } } -/* 각 점이 순차적으로 밝아지는 효과 */ .dot-animation:nth-child(1) { animation-delay: 0s; }