[events] Fixed minor optical issues

This commit is contained in:
Ferdinand Thiessen 2021-03-21 16:00:19 +01:00
parent 77bb463e5e
commit 218e41e94a
3 changed files with 4 additions and 5 deletions

View File

@ -43,7 +43,6 @@
label="Beschreibung"
type="textarea"
filled
:rules="[notEmpty]"
/>
</q-card-section>
<q-btn label="Schicht löschen" color="negative" :disabled="jobCanDelete" @click="removeJob" />

View File

@ -1,10 +1,10 @@
<template>
<q-card
class="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%) justify-start content-center items-center rounded-borders border-primary shadow-5 q-mb-xs"
class="justify-start content-center items-center rounded-borders border-primary shadow-5 q-mb-xs"
bordered
>
<header class="text-primary q-px-xs">
<div class="col text-weight-bolder ellipsis">
<div class="col text-weight-bolder">
{{ event.type.name }}
</div>
<div v-if="event.description" class="col text-weight-medium" style="font-size: 10px">

View File

@ -1,5 +1,5 @@
<template>
<q-card>
<q-card-section>
<div class="text-weight-medium q-px-xs">
{{ asHour(modelValue.start) }}
<template v-if="modelValue.end">- {{ asHour(modelValue.end) }}</template>
@ -31,7 +31,7 @@
<q-btn v-if="isEnrolled" flat color="negative" label="Austragen" @click="signOutFromJob" />
</div>
</div>
</q-card>
</q-card-section>
</template>
<script lang="ts">