Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions app/components/Recaptcha.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { button_label, button_color, color } = defineProps({
button_label: {
type: String,
required: false,
default: "Launch the app",
default: "Load the app",
},
button_color: {
type: String,
Expand Down Expand Up @@ -60,16 +60,35 @@ function submit() {
</VRow>
<VRow>
<VCol>
<VCheckbox label="Launch the app" v-model="launch" />
<VCheckbox label="Load the app" v-model="load" />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

button_label ? Même si pas visible

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

accessibilité / référencement

</VCol>
</VRow>
</VContainer>
</VForm>
</VCol>
</VRow>
<VRow align="center" justify="center">
<VCol cols="4" class="d-flex justify-center align-center">
<VBtn :text="button_label" :color="color || button_color" @click="submit" />
<VCol cols="auto" class="d-flex justify-center align-center">
<VBtn class="load-btn" :text="button_label" :color="color || button_color" @click="submit" />
</VCol>
</VRow>
</template>

<style scoped>
.load-btn {
padding: 0 40px !important;
height: 50px !important;
border-radius: 8px;
text-transform: none !important;
font-weight: 600;
letter-spacing: 0.5px;
transition:
transform 0.2s ease,
box-shadow 0.2s ease !important;
}

.load-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
</style>
Loading