From 43873a883bf0ed040d75e3ebeabe87f3af00d02c Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Thu, 29 Jan 2026 19:34:28 -0800 Subject: [PATCH] Update StoryList component styles for improved UI consistency - Changed border radius of the "No stories yet" message to rounded-2xl for a softer appearance. - Updated story item borders to rounded-2xl to enhance visual cohesion across the component. --- app/src/components/StoriesTab/StoryList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/StoriesTab/StoryList.tsx b/app/src/components/StoriesTab/StoryList.tsx index ea5e892a..db4c840b 100644 --- a/app/src/components/StoriesTab/StoryList.tsx +++ b/app/src/components/StoriesTab/StoryList.tsx @@ -186,7 +186,7 @@ export function StoryList() { {/* Story List */}
{storyList.length === 0 ? ( -
+

No stories yet

Create your first story to get started

@@ -196,7 +196,7 @@ export function StoryList() {