mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge pull request #2233 from gradido/send-form-border-radius
style: add border-radius on send form
This commit is contained in:
commit
8a8ffccd71
@ -7,7 +7,6 @@
|
|||||||
v-model="form.text"
|
v-model="form.text"
|
||||||
:placeholder="$t('contributionLink.memo')"
|
:placeholder="$t('contributionLink.memo')"
|
||||||
rows="3"
|
rows="3"
|
||||||
max-rows="6"
|
|
||||||
></b-form-textarea>
|
></b-form-textarea>
|
||||||
<b-row class="mt-4 mb-6">
|
<b-row class="mt-4 mb-6">
|
||||||
<b-col>
|
<b-col>
|
||||||
|
|||||||
@ -7,7 +7,6 @@
|
|||||||
v-model="form.text"
|
v-model="form.text"
|
||||||
:placeholder="$t('form.memo')"
|
:placeholder="$t('form.memo')"
|
||||||
rows="3"
|
rows="3"
|
||||||
max-rows="6"
|
|
||||||
></b-form-textarea>
|
></b-form-textarea>
|
||||||
<b-row class="mt-4 mb-6">
|
<b-row class="mt-4 mb-6">
|
||||||
<b-col>
|
<b-col>
|
||||||
|
|||||||
@ -42,7 +42,6 @@
|
|||||||
id="contribution-memo"
|
id="contribution-memo"
|
||||||
v-model="form.memo"
|
v-model="form.memo"
|
||||||
rows="3"
|
rows="3"
|
||||||
max-rows="6"
|
|
||||||
:placeholder="$t('contribution.yourActivity')"
|
:placeholder="$t('contribution.yourActivity')"
|
||||||
required
|
required
|
||||||
></b-form-textarea>
|
></b-form-textarea>
|
||||||
|
|||||||
@ -46,7 +46,7 @@
|
|||||||
<label class="input-1 mt-4" for="input-1">{{ $t('form.recipient') }}</label>
|
<label class="input-1 mt-4" for="input-1">{{ $t('form.recipient') }}</label>
|
||||||
<b-input-group
|
<b-input-group
|
||||||
id="input-group-1"
|
id="input-group-1"
|
||||||
class="border border-default"
|
class="border border-default border-radius"
|
||||||
description="We'll never share your email with anyone else."
|
description="We'll never share your email with anyone else."
|
||||||
size="lg"
|
size="lg"
|
||||||
>
|
>
|
||||||
@ -81,7 +81,11 @@
|
|||||||
v-slot="{ errors, valid }"
|
v-slot="{ errors, valid }"
|
||||||
>
|
>
|
||||||
<label class="input-2" for="input-2">{{ $t('form.amount') }}</label>
|
<label class="input-2" for="input-2">{{ $t('form.amount') }}</label>
|
||||||
<b-input-group id="input-group-2" class="border border-default" size="lg">
|
<b-input-group
|
||||||
|
id="input-group-2"
|
||||||
|
class="border border-default border-radius"
|
||||||
|
size="lg"
|
||||||
|
>
|
||||||
<b-input-group-prepend class="p-2 d-none d-md-block">
|
<b-input-group-prepend class="p-2 d-none d-md-block">
|
||||||
<div class="m-1 mt-2">{{ $t('GDD') }}</div>
|
<div class="m-1 mt-2">{{ $t('GDD') }}</div>
|
||||||
</b-input-group-prepend>
|
</b-input-group-prepend>
|
||||||
@ -115,7 +119,7 @@
|
|||||||
v-slot="{ errors }"
|
v-slot="{ errors }"
|
||||||
>
|
>
|
||||||
<label class="input-3" for="input-3">{{ $t('form.message') }}</label>
|
<label class="input-3" for="input-3">{{ $t('form.message') }}</label>
|
||||||
<b-input-group id="input-group-3" class="border border-default">
|
<b-input-group id="input-group-3" class="border border-default border-radius">
|
||||||
<b-input-group-prepend class="d-none d-md-block">
|
<b-input-group-prepend class="d-none d-md-block">
|
||||||
<b-icon icon="chat-right-text" class="display-4 m-3 mt-4"></b-icon>
|
<b-icon icon="chat-right-text" class="display-4 m-3 mt-4"></b-icon>
|
||||||
</b-input-group-prepend>
|
</b-input-group-prepend>
|
||||||
@ -237,4 +241,7 @@ span.errors {
|
|||||||
#input-3:focus {
|
#input-3:focus {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
.border-radius {
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user