date format and margin changed

This commit is contained in:
ogerly 2022-12-14 16:02:05 +01:00
parent 1eea07ac70
commit 971cf97ccf
3 changed files with 11 additions and 7 deletions

View File

@ -7,8 +7,10 @@
<b-form-radio-group v-model="radioSelected"> <b-form-radio-group v-model="radioSelected">
<b-row class="mb-4"> <b-row class="mb-4">
<b-col> <b-col>
<b-row class="bg-f5 gradido-border-radius p-2"> <b-row class="bg-f5 gradido-border-radius pt-2">
<b-col cols="10">{{ $t('send_gdd') }}</b-col> <b-col cols="10" @click="radioSelected = sendTypes.send" class="pointer">
{{ $t('send_gdd') }}
</b-col>
<b-col cols="2"> <b-col cols="2">
<b-form-radio <b-form-radio
name="shipping" name="shipping"
@ -21,8 +23,10 @@
</b-row> </b-row>
</b-col> </b-col>
<b-col> <b-col>
<b-row class="bg-f5 gradido-border-radius p-2"> <b-row class="bg-f5 gradido-border-radius pt-2">
<b-col cols="10">{{ $t('send_per_link') }}</b-col> <b-col cols="10" @click="radioSelected = sendTypes.link" class="pointer">
{{ $t('send_per_link') }}
</b-col>
<b-col cols="2"> <b-col cols="2">
<b-form-radio <b-form-radio
name="shipping" name="shipping"

View File

@ -15,7 +15,8 @@
{{ getLinesByType }} {{ getLinesByType }}
</div> --> </div> -->
<div> <div>
{{ date }} <span class="small">{{ this.$d(new Date(date), 'short') }}</span>
<span class="small ml-3">{{ this.$d(new Date(date), 'time') }}</span>
</div> </div>
<div> <div>
{{ getLinesByType.description }} {{ getLinesByType.description }}
@ -31,7 +32,7 @@
<b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col> <b-col cols="1"><collapse-icon class="text-right" :visible="visible" /></b-col>
</b-row> </b-row>
<b-collapse :id="collapseId" class="mt-2 pb-4" v-model="visible"> <b-collapse :id="collapseId" class="mt-2" v-model="visible">
<transaction-collapse <transaction-collapse
:amount="amount" :amount="amount"
:gdtEntryType="gdtEntryType" :gdtEntryType="gdtEntryType"

View File

@ -50,7 +50,6 @@
></transaction-result-link> ></transaction-result-link>
</template> </template>
</gdd-send> </gdd-send>
<hr />
</b-container> </b-container>
</div> </div>
</template> </template>