diff --git a/components/ButtonCTA.vue b/components/ButtonCTA.vue index dba1e97..4f32869 100644 --- a/components/ButtonCTA.vue +++ b/components/ButtonCTA.vue @@ -46,6 +46,11 @@ export default { "bg-surface cursor-not-allowed text-accent/50 border border-accent/50 rounded-lg": this.color === "surface" && this.disabled, + "border border-accent focus:border-surface hover:bg-accent hover:border-surface hover:text-surface text-accent focus:text-accent rounded-lg": + this.color === "transparent" && !this.disabled, + "bg-accent/55 border border-accent/10 cursor-not-allowed text-white rounded-lg": + this.color === "accent" && this.disabled, + }; } }, diff --git a/components/FormSlice.vue b/components/FormSlice.vue index d658d24..5d9a4d7 100644 --- a/components/FormSlice.vue +++ b/components/FormSlice.vue @@ -1,11 +1,11 @@