fix: refs #8217 adjust form styling and add id for better accessibility
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Javier Segarra 2025-04-25 10:20:25 +02:00
parent 46c031dc14
commit e66f5d5b30
1 changed files with 2 additions and 4 deletions

View File

@ -345,13 +345,14 @@ defineExpose({
<template> <template>
<div class="column items-center full-width"> <div class="column items-center full-width">
<QForm <QForm
id="formModel"
v-on="$attrs" v-on="$attrs"
ref="myForm" ref="myForm"
v-if="formData" v-if="formData"
@submit.prevent="save" @submit.prevent="save"
@keyup.prevent="onKeyup" @keyup.prevent="onKeyup"
@reset="reset" @reset="reset"
class="q-pa-md" class="full-width q-pa-md"
:style="maxWidth ? 'max-width: ' + maxWidth : ''" :style="maxWidth ? 'max-width: ' + maxWidth : ''"
> >
<QCard> <QCard>
@ -442,9 +443,6 @@ defineExpose({
.q-notifications { .q-notifications {
color: black; color: black;
} }
#formModel {
width: 100%;
}
.q-card { .q-card {
padding: 32px; padding: 32px;