feat(activities): UI tweaks across feed, detail, hosting, calendar, scan, shell #91

Merged
padreug merged 25 commits from feat/ui-tweaks into dev 2026-06-10 16:35:50 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2c7597c25f - Show all commits

fix(sidebar): clip horizontal overflow on profile sheets

Defensive guard against content (long addresses, code spans, etc.)
forcing a horizontal scroll inside the hamburger / profile sheet.
The root cause for individual cards is addressed separately.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Padreug 2026-06-10 17:12:01 +02:00

View file

@ -50,7 +50,7 @@ const open = ref(false)
</template> </template>
</button> </button>
</SheetTrigger> </SheetTrigger>
<SheetContent side="bottom" class="h-[90vh] overflow-y-auto"> <SheetContent side="bottom" class="h-[90vh] overflow-y-auto overflow-x-hidden">
<ProfileSheetContent /> <ProfileSheetContent />
</SheetContent> </SheetContent>
</Sheet> </Sheet>

View file

@ -53,7 +53,7 @@ function handleClick(item: SidebarNavItem) {
<Menu class="w-5 h-5" /> <Menu class="w-5 h-5" />
</button> </button>
</SheetTrigger> </SheetTrigger>
<SheetContent side="right" class="w-80 sm:w-96 overflow-y-auto"> <SheetContent side="right" class="w-80 sm:w-96 max-w-full overflow-y-auto overflow-x-hidden">
<ProfileSheetContent> <ProfileSheetContent>
<template v-if="props.items.length" #app-nav> <template v-if="props.items.length" #app-nav>
<nav class="mt-4 space-y-1"> <nav class="mt-4 space-y-1">