Skip to content

Commit 27b4913

Browse files
committed
Add w-full to layouts, so the list view grows to fill the container, regardless of the inner content width
1 parent 2df63c6 commit 27b4913

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/pages/@[org].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ defineOgImageComponent('Default', {
109109
</script>
110110

111111
<template>
112-
<main class="container py-8 sm:py-12">
112+
<main class="container py-8 sm:py-12 w-full">
113113
<!-- Header -->
114114
<header class="mb-8 pb-8 border-b border-border">
115115
<div class="flex items-center gap-4 mb-4">

app/pages/[...package].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ defineOgImageComponent('Package', {
292292
</script>
293293

294294
<template>
295-
<main class="container py-8 sm:py-12 overflow-hidden">
295+
<main class="container py-8 sm:py-12 overflow-hidden w-full">
296296
<PackageSkeleton v-if="status === 'pending'" />
297297

298298
<article v-else-if="status === 'success' && pkg" class="animate-fade-in min-w-0">

app/pages/~[username].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ defineOgImageComponent('Default', {
171171
</script>
172172

173173
<template>
174-
<main class="container py-8 sm:py-12">
174+
<main class="container py-8 sm:py-12 w-full">
175175
<!-- Header -->
176176
<header class="mb-8 pb-8 border-b border-border">
177177
<div class="flex items-center gap-4 mb-4">

0 commit comments

Comments
 (0)