This commit is contained in:
syuilo 2025-03-29 17:28:20 +09:00
parent df3ed93f84
commit 7c06ffc422
2 changed files with 15 additions and 21 deletions

View File

@ -16,9 +16,8 @@ SPDX-License-Identifier: AGPL-3.0-only
</div> </div>
</div> </div>
</div> </div>
<div :class="{ [$style.slotClip]: isPullStart }">
<slot/> <slot/>
</div>
</div> </div>
</template> </template>
@ -261,8 +260,4 @@ defineExpose({
margin: 5px 0; margin: 5px 0;
} }
} }
.slotClip {
overflow-y: clip;
}
</style> </style>

View File

@ -13,10 +13,10 @@ SPDX-License-Identifier: AGPL-3.0-only
</MkInfo> </MkInfo>
<MkPostForm v-if="prefer.r.showFixedPostForm.value" :class="$style.postForm" class="_panel" fixed style="margin-bottom: var(--MI-margin);"/> <MkPostForm v-if="prefer.r.showFixedPostForm.value" :class="$style.postForm" class="_panel" fixed style="margin-bottom: var(--MI-margin);"/>
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div> <div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
<div :class="$style.tl">
<MkTimeline <MkTimeline
ref="tlComponent" ref="tlComponent"
:key="src + withRenotes + withReplies + onlyFiles + withSensitive" :key="src + withRenotes + withReplies + onlyFiles + withSensitive"
:class="$style.tl"
:src="src.split(':')[0]" :src="src.split(':')[0]"
:list="src.split(':')[1]" :list="src.split(':')[1]"
:withRenotes="withRenotes" :withRenotes="withRenotes"
@ -26,7 +26,6 @@ SPDX-License-Identifier: AGPL-3.0-only
:sound="true" :sound="true"
@queue="queueUpdated" @queue="queueUpdated"
/> />
</div>
</MkSpacer> </MkSpacer>
</MkStickyContainer> </MkStickyContainer>
</div> </div>