fix. [디자인 QA] 로딩 이미지의 시인성 개선을 위해 dark <-> white 모드간 교체

This commit is contained in:
clkim
2025-11-26 14:53:24 +09:00
parent 24ff4ca629
commit ecb1202b3c
2 changed files with 4 additions and 4 deletions

View File

@@ -28,12 +28,12 @@ const canTeleport = (localId: string) => {
@apply absolute inset-0 flex items-center justify-center z-[5];
}
.spinner {
@apply w-[80px] h-[80px] bg-cover bg-center bg-no-repeat bg-[url('/images/common/publisning_template_loader_black.png')];
@apply w-[80px] h-[80px] bg-cover bg-center bg-no-repeat bg-[url('/images/common/publisning_template_loader_white.png')];
}
[data-theme='light'] {
.spinner {
@apply bg-[url('/images/common/publisning_template_loader_white.png')];
@apply bg-[url('/images/common/publisning_template_loader_black.png')];
}
}
</style>