diff --git a/assets/style.less b/assets/style.less index b3ae9831..47f6c1cf 100644 --- a/assets/style.less +++ b/assets/style.less @@ -29,6 +29,10 @@ html, body { padding: 0 !important; } +p { + margin-bottom: 0.5rem; +} + #__nuxt, #__layout { min-height: 100vh; display: flex; @@ -118,6 +122,8 @@ html, body { } .el-menu-item { + height: 40px; + line-height: 40px; a { color: #303133; display: block; diff --git a/components/Event.vue b/components/Event.vue index fbec49bb..debf2ec5 100644 --- a/components/Event.vue +++ b/components/Event.vue @@ -8,11 +8,15 @@ .p-name.p-summary.title {{event.title}} .card-body + //- when div i.el-icon-date time.dt-start(:datetime='event.start_datetime|unixFormat("YYYY-MM-DD HH:mm")') {{event|when}} + + //- place el-button.p-location.mt-1.bg-dark.text-warning.float-right(plain size='mini' round type='text' icon='el-icon-location-outline' @click='addPlace') {{event.place.name}} - //- date / place + + //- description .description.p-description.mt-3(v-if='!event.image_path || !event.tags.length' v-html='description') .card-footer(v-if='event.tags.length') diff --git a/locales/it.json b/locales/it.json index 706fdc38..df9307b5 100644 --- a/locales/it.json +++ b/locales/it.json @@ -75,7 +75,8 @@ "event": "Evento", "pause": "Pausa", "start": "Avvia", - "fediverse": "Fediverso" + "fediverse": "Fediverso", + "skip": "Salta" }, "login": { "description": "Entrando puoi pubblicare nuovi eventi.", diff --git a/pages/event/eventAdmin.vue b/pages/event/eventAdmin.vue index e804795a..ac7c4635 100644 --- a/pages/event/eventAdmin.vue +++ b/pages/event/eventAdmin.vue @@ -1,14 +1,19 @@