fix: inbox contact sidebar overflow (#15470)

Keeps the inbox conversation and contact sidebar within the available
viewport at desktop breakpoints.

## Preview



https://github.com/user-attachments/assets/aba1e25e-8741-4544-8659-a6024ad1e887



## How to reproduce

1. Open an inbox notification with the contact sidebar visible.
2. Resize the viewport around the 1536px breakpoint or expand the main
navigation.
3. Confirm the inbox list, conversation, and contact sidebar remain
visible.
This commit is contained in:
Shivam Mishra
2026-08-13 19:50:03 +05:30
committed by GitHub
parent fefa0a6966
commit 59942e6890
2 changed files with 2 additions and 2 deletions

View File

@@ -222,7 +222,7 @@ onMounted(() => {
</script>
<template>
<section class="flex w-full h-full bg-n-surface-1">
<section class="flex w-full h-full min-w-0 bg-n-surface-1">
<div
class="flex flex-col h-full w-full lg:min-w-[340px] lg:max-w-[340px] ltr:border-r rtl:border-l border-n-weak"
:class="!currentConversationId ? 'flex' : 'hidden xl:flex'"

View File

@@ -185,7 +185,7 @@ onMounted(async () => {
</script>
<template>
<div class="h-full w-full flex-1">
<div class="h-full w-full min-w-0 flex-1">
<div v-if="showEmptyState" class="flex w-full h-full">
<InboxEmptyState
:empty-state-message="$t('INBOX.LIST.NO_MESSAGES_AVAILABLE')"