diff --git a/plugins/decky-vault/src/components/LibraryAppPanel.tsx b/plugins/decky-vault/src/components/LibraryAppPanel.tsx
index 1cc7e5b..ec6cb79 100644
--- a/plugins/decky-vault/src/components/LibraryAppPanel.tsx
+++ b/plugins/decky-vault/src/components/LibraryAppPanel.tsx
@@ -1,5 +1,5 @@
import { useEffect, useState, useRef } from "react"
-import { PanelSectionRow, ButtonItem, staticClasses } from "@decky/ui"
+import { PanelSectionRow, Focusable, staticClasses } from "@decky/ui"
import { Router } from "@decky/ui"
import {
fetchPluginGame,
@@ -130,12 +130,20 @@ export default function LibraryAppPanel({ appId, title, hardwareSlug, baseUrl }:
{detectedSlug ? detectedSlug : ⚠ global}
- {/* View Details — compact, gamepad-navigable */}
-
- openExternalUrl(gameUrl)}>
+ {/* View Details — compact, gamepad-navigable via Focusable */}
+ openExternalUrl(gameUrl)} style={{ flexShrink: 0 }}>
+
View Details
-
-
+
+
)