Skip to content
Snippets Groups Projects
Commit e0d4bcb2 authored by Thilo Wischmeyer's avatar Thilo Wischmeyer Committed by Thilo Wischmeyer
Browse files

Fixed label list spacing

parent 4418306d
No related branches found
No related tags found
1 merge request!247Resolve "Update Vuetify"
<template> <template>
<div> <div>
<feedback-label <div
v-for="label in labels" v-for="label in labels"
:key="label.pk" :key="label.pk"
v-bind="label" class="label"
/> >
<feedback-label
v-bind="label"
class="label"
/>
</div>
</div> </div>
</template> </template>
...@@ -23,6 +28,13 @@ export default { ...@@ -23,6 +28,13 @@ export default {
} }
</script> </script>
<style> <style scoped>
div.label {
display: inline-block;
margin: 8px 0 0 8px;
}
div.label:last-child {
margin-bottom: 8px;
}
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment