Skip to content

Commit e9a9c75

Browse files
authored
tweak(ui): fix padding bottom on the context tab (#18680)
1 parent 2b17182 commit e9a9c75

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/app/src/components/session/session-context-tab.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,14 @@ export function SessionContextTab() {
267267

268268
return (
269269
<ScrollView
270-
class="@container h-full pb-10"
270+
class="@container h-full"
271271
viewportRef={(el) => {
272272
scroll = el
273273
restoreScroll()
274274
}}
275275
onScroll={handleScroll}
276276
>
277-
<div class="px-6 pt-4 flex flex-col gap-10">
277+
<div class="px-6 pt-4 pb-10 flex flex-col gap-10">
278278
<div class="grid grid-cols-1 @[32rem]:grid-cols-2 gap-4">
279279
<For each={stats}>
280280
{(stat) => <Stat label={language.t(stat.label as Parameters<typeof language.t>[0])} value={stat.value()} />}

0 commit comments

Comments
 (0)