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,
#radios,
#search,
#welcome {
#welcome,
#share {
display: flex;
flex-grow: 1;
flex-wrap: wrap;

View File

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

View File

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

View File

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