From b720232a551c19ea64253bf835a7f9dc09920c00 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Mon, 3 Jul 2023 13:56:35 -0700 Subject: [PATCH] refactor: outline button style border-2 --- components/Brand/Button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Brand/Button.vue b/components/Brand/Button.vue index 571f880f5..86d02dbde 100644 --- a/components/Brand/Button.vue +++ b/components/Brand/Button.vue @@ -21,7 +21,7 @@ const classes = computed(() => { case 'fill': return 'text-white bg-gradient-to-r from-unraid-red to-orange hover:from-unraid-red/60 hover:to-orange/60 focus:from-unraid-red/60 focus:to-orange/60'; case 'outline': - return 'text-orange bg-gradient-to-r from-transparent to-transparent border border-solid border-orange hover:text-white focus:text-white hover:from-unraid-red hover:to-orange focus:from-unraid-red focus:to-orange hover:border-transparent focus:border-transparent'; + return 'text-orange bg-gradient-to-r from-transparent to-transparent border-2 border-solid border-orange hover:text-white focus:text-white hover:from-unraid-red hover:to-orange focus:from-unraid-red focus:to-orange hover:border-transparent focus:border-transparent'; case 'underline': return 'opacity-75 hover:opacity-100 focus:opacity-100 underline transition hover:text-alpha hover:bg-beta focus:text-alpha focus:bg-beta'; }