share: ui fixes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Artem Anufrij 2023-02-18 00:33:54 +01:00
parent 813b1c09fc
commit c3d74e782d
4 changed files with 8 additions and 3 deletions

View File

@ -56,7 +56,8 @@ td.fillCell>* {
#boxes, #boxes,
#radios, #radios,
#search, #search,
#welcome { #welcome,
#share {
display: flex; display: flex;
flex-grow: 1; flex-grow: 1;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -64,10 +64,13 @@ export default {
#albumContent { #albumContent {
overflow: hidden; overflow: hidden;
width: 100%;
} }
#album { #album {
overflow: auto; overflow: auto;
} }
#header { #header {
overflow: hidden; overflow: hidden;
} }

View File

@ -63,6 +63,7 @@ export default {
#boxContent { #boxContent {
overflow: hidden; overflow: hidden;
width: 100%;
} }
#box { #box {
overflow: auto; overflow: auto;

View File

@ -1,5 +1,5 @@
<template> <template>
<div ref="share" id="share" class="flex-column"> <div ref="share" id="share">
<AlbumContent ref="album" v-if="type == 'album'" /> <AlbumContent ref="album" v-if="type == 'album'" />
<BoxContent ref="box" v-if="type == 'box'" /> <BoxContent ref="box" v-if="type == 'box'" />
</div> </div>
@ -68,6 +68,6 @@ export default {
<style scoped> <style scoped>
#share { #share {
overflow: auto; flex-direction: column;
} }
</style> </style>