aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/site/components/grid/Grid.vue14
-rw-r--r--src/site/components/image-modal/ImageInfo.vue3
2 files changed, 11 insertions, 6 deletions
diff --git a/src/site/components/grid/Grid.vue b/src/site/components/grid/Grid.vue
index d29160f..7170709 100644
--- a/src/site/components/grid/Grid.vue
+++ b/src/site/components/grid/Grid.vue
@@ -148,12 +148,6 @@
</div>
</template>
</b-table>
- <button
- v-if="moreFiles"
- class="button is-primary mt2"
- @click="loadMoreFiles">
- Load more
- </button>
</div>
<b-modal class="imageinfo-modal" :active.sync="isAlbumsModalActive">
@@ -495,4 +489,12 @@ div.actions {
i.mdi {
font-size: 16px;
}
+
+.imageinfo-modal{
+ ::v-deep .modal-content {
+ @media screen and (max-width: 768px) {
+ min-height: 100vh;
+ }
+ }
+}
</style>
diff --git a/src/site/components/image-modal/ImageInfo.vue b/src/site/components/image-modal/ImageInfo.vue
index c3f0041..485a8aa 100644
--- a/src/site/components/image-modal/ImageInfo.vue
+++ b/src/site/components/image-modal/ImageInfo.vue
@@ -200,5 +200,8 @@ export default {
@media screen and (min-width: 769px) {
padding-right: 1.5rem;
}
+ @media screen and (max-width: 769px) {
+ padding-bottom: 3rem;
+ }
}
</style>