about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-07-22 15:52:53 -0700
committerCaidan Williams <caidan@internet.dev>2025-07-24 12:30:35 -0700
commit0685de9b7ff26e555f50dfb8819f60fa85d68a39 (patch)
tree0a224d9b3ca62e691f5245b5873c9d0ca4427586 /src
parentc1d2aea885e8ec32b40b9710d0da641fe75dac91 (diff)
downloadvoidsky-0685de9b7ff26e555f50dfb8819f60fa85d68a39.tar.zst
feat(ui): update TrendingVideos dismiss button style
Changed the TrendingVideos dismiss button to use solid variant and
square shape for improved visibility. Also set ButtonIcon size to "sm"
for better alignment with the new button style.
Diffstat (limited to 'src')
-rw-r--r--src/components/interstitials/TrendingVideos.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx
index 3ad5625c3..c95311d0e 100644
--- a/src/components/interstitials/TrendingVideos.tsx
+++ b/src/components/interstitials/TrendingVideos.tsx
@@ -89,11 +89,11 @@ export function TrendingVideos() {
         <Button
           label={_(msg`Dismiss this section`)}
           size="tiny"
-          variant="ghost"
+          variant="solid"
           color="secondary"
-          shape="round"
+          shape="square"
           onPress={() => trendingPrompt.open()}>
-          <ButtonIcon icon={X} />
+          <ButtonIcon icon={X} size="sm" />
         </Button>
       </View>