fix Event action button alignment
This commit is contained in:
@@ -10,14 +10,14 @@
|
|||||||
.d-none.dt-end {{props.event.end_datetime|unixFormat('YYYY-MM-DD HH:mm')}}
|
.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}}
|
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
|
.tags
|
||||||
v-chip.ml-1(v-for='tag in props.event.tags' small
|
v-chip.ml-1(v-for='tag in props.event.tags' small
|
||||||
:key='tag' outlined color='primary' @click="listeners['tagclick'](tag)") {{tag}}
|
:key='tag' outlined color='primary' @click="listeners['tagclick'](tag)") {{tag}}
|
||||||
|
|
||||||
v-menu(offset-y)
|
v-menu(offset-y)
|
||||||
template(v-slot:activator="{on}")
|
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-icon mdi-dots-vertical
|
||||||
v-list(dense)
|
v-list(dense)
|
||||||
v-list-item-group
|
v-list-item-group
|
||||||
@@ -61,7 +61,7 @@ export default {
|
|||||||
|
|
||||||
.title {
|
.title {
|
||||||
display: block;
|
display: block;
|
||||||
max-height: 2.8em;
|
max-height: 4.2em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin: 0.5rem 1rem 0.5rem 1rem;
|
margin: 0.5rem 1rem 0.5rem 1rem;
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ v-container
|
|||||||
.text-subtitle-1.adr {{event.place.address}}
|
.text-subtitle-1.adr {{event.place.address}}
|
||||||
|
|
||||||
//- tags, hashtags
|
//- 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'
|
v-chip.p-category.ml-1.mt-3(v-for='tag in event.tags' color='primary'
|
||||||
outlined :key='tag' v-text='tag')
|
outlined :key='tag' v-text='tag')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user