From 64b2c340315e2db8ff04b8cb8c0b84ee251612cd Mon Sep 17 00:00:00 2001 From: mikiher Date: Thu, 20 Mar 2025 12:32:13 +0200 Subject: [PATCH] Fix buggy loading opacity --- client/components/ui/Btn.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/ui/Btn.vue b/client/components/ui/Btn.vue index d2fee1bc..a2565c80 100644 --- a/client/components/ui/Btn.vue +++ b/client/components/ui/Btn.vue @@ -43,7 +43,7 @@ export default { computed: { classList() { var list = [] - list.push(this.loading ? 'text-white/100' : 'text-white') + list.push(this.loading ? 'text-white/0' : 'text-white') list.push(`${this.color}`) if (this.small) { list.push('text-sm')