Skip to content

Commit 617a2b1

Browse files
committed
fix(css): remove margin from main list container
1 parent db1472f commit 617a2b1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/common/list/ListScroll.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const topInset = computed(() => {
200200
const listPaddingTop = computed(
201201
() => topInset.value + (listOptions?.value?.paddingTop ?? 60),
202202
);
203-
const listPaddingBottom = computed(() => listOptions?.value?.paddingBottom ?? 32);
203+
const listPaddingBottom = computed(() => listOptions?.value?.paddingBottom ?? 8);
204204
</script>
205205

206206
<template>
@@ -290,9 +290,8 @@ const listPaddingBottom = computed(() => listOptions?.value?.paddingBottom ?? 32
290290
@include animation.fade-in;
291291
292292
.list-scroll {
293-
height: calc(var(--full-height) - 8px);
293+
height: var(--full-height);
294294
margin-top: calc(0% - #{layout.$safe-navbar-height});
295-
margin-bottom: 8px;
296295
297296
.load-more {
298297
margin-top: 1rem;

0 commit comments

Comments
 (0)