From da5b74b29592da6da482cb67a89173271ffbd075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa?= Date: Tue, 21 Oct 2025 15:18:17 +0200 Subject: [PATCH] JSON preguntas corregido --- components/ButtonCTA.vue | 5 + components/FormSlice.vue | 12 +- components/InputAttach.vue | 2 +- components/InputCheckbox.vue | 2 +- components/InputEmail.vue | 17 +- components/InputRadio.vue | 39 +- components/InputText.vue | 16 +- components/SliceEnd.vue | 2 +- components/SliceFeedback.vue | 10 +- components/SliceQuestion.vue | 131 +- data/bravioo.js | 3411 ++++++++++++++++++++++++++++++++++ pages/index.vue | 11 +- 12 files changed, 3577 insertions(+), 81 deletions(-) create mode 100644 data/bravioo.js 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 @@