Fixing style

This commit is contained in:
soraefir 2023-07-13 19:06:56 +02:00
parent cdd1fc31b7
commit cf3cb8d63f
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -1,5 +1,5 @@
draggable(tag='div' :list='journey_data.main' class='list-group bg-dark' handle='.handle')
div.list-group-item.handle(v-for='(element, idx) in journey_data.main' :key='idx' @click='sel_section(idx)' :class='{ bg-primary: (journey_step_data.section==idx) }')
div.list-group-item.handle(v-for='(element, idx) in journey_data.main' :key='idx' @click='sel_section(idx)' :class='(journey_step_data.section==idx)?"bg-primary":""')
div.text {{element.title}}
i.fa.fa-times.close.fright(style='top:2px;right:2px;position:absolute;' @click='rm_section(idx)')