fix Event action button alignment

This commit is contained in:
les 2021-03-06 00:16:54 +01:00
parent cb88720bd3
commit 1ac23e6993
No known key found for this signature in database
GPG key ID: 352918250B012177
2 changed files with 4 additions and 4 deletions

View file

@ -10,14 +10,14 @@
.d-none.dt-end {{props.event.end_datetime|unixFormat('YYYY-MM-DD HH:mm')}}
a.place.d-block.p-location.pl-0(text color='primary' @click="listeners['placeclick'](props.event.place.id)") <v-icon>mdi-map-marker</v-icon> {{props.event.place.name}}
v-card-actions.actions
v-card-actions.actions.justify-space-between
.tags
v-chip.ml-1(v-for='tag in props.event.tags' small
:key='tag' outlined color='primary' @click="listeners['tagclick'](tag)") {{tag}}
v-menu(offset-y)
template(v-slot:activator="{on}")
v-btn(icon v-on='on' color='primary')
v-btn.align-self-end(icon v-on='on' color='primary')
v-icon mdi-dots-vertical
v-list(dense)
v-list-item-group
@ -61,7 +61,7 @@ export default {
.title {
display: block;
max-height: 2.8em;
max-height: 4.2em;
overflow: hidden;
margin: 0.5rem 1rem 0.5rem 1rem;
color: white;

View file

@ -44,7 +44,7 @@ v-container
.text-subtitle-1.adr {{event.place.address}}
//- tags, hashtags
v-toolbar(v-if='event.tags.length').darken-4.grey
v-card-text(v-if='event.tags.length').darken-4.grey
v-chip.p-category.ml-1.mt-3(v-for='tag in event.tags' color='primary'
outlined :key='tag' v-text='tag')