edit-meta: fix some layout

pull/465/head
Varun Patil 2023-03-08 12:03:37 -08:00
parent 679eeae601
commit a44cfe3b85
2 changed files with 12 additions and 3 deletions

View File

@ -221,8 +221,6 @@ export default defineComponent({
<style scoped lang="scss"> <style scoped lang="scss">
.outer { .outer {
margin-bottom: 10px;
.lat-lon { .lat-lon {
display: flex; display: flex;
padding: 4px; padding: 4px;

View File

@ -29,6 +29,7 @@
{{ t("memories", "Collaborative Tags") }} {{ t("memories", "Collaborative Tags") }}
</div> </div>
<EditTags ref="editTags" :photos="photos" /> <EditTags ref="editTags" :photos="photos" />
<div class="tag-padding" v-if="sections.length === 1"></div>
</div> </div>
<div v-if="sections.includes(3)"> <div v-if="sections.includes(3)">
@ -46,7 +47,7 @@
</div> </div>
</div> </div>
<div v-if="processing"> <div v-if="processing" class="progressbar">
<NcProgressBar :value="progress" :error="true" /> <NcProgressBar :value="progress" :error="true" />
</div> </div>
</Modal> </Modal>
@ -252,4 +253,14 @@ export default defineComponent({
margin-top: 10px; margin-top: 10px;
} }
} }
.tag-padding {
height: 200px;
width: 100%;
display: block;
}
.progressbar {
margin-top: 10px;
}
</style> </style>