summaryrefslogtreecommitdiff
path: root/src/components/InstructionCard.tsx
diff options
context:
space:
mode:
authorxXJsonDeruloXx <danielhimebauch@gmail.com>2026-03-20 17:32:52 -0400
committerxXJsonDeruloXx <danielhimebauch@gmail.com>2026-03-20 17:32:52 -0400
commitd81bb130385114389728f849d0ab8cccf62b90d1 (patch)
treee4bdd986c3b18c62cae7311b92fb5ad5f9be86e6 /src/components/InstructionCard.tsx
parentca5db2231b8554d1377dd449f6fb9c736e3d6386 (diff)
downloadDecky-Framegen-d81bb130385114389728f849d0ab8cccf62b90d1.tar.gz
Decky-Framegen-d81bb130385114389728f849d0ab8cccf62b90d1.zip
Add Steam UI for prefix-managed integration
Diffstat (limited to 'src/components/InstructionCard.tsx')
-rw-r--r--src/components/InstructionCard.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/InstructionCard.tsx b/src/components/InstructionCard.tsx
index fdf6755..392c782 100644
--- a/src/components/InstructionCard.tsx
+++ b/src/components/InstructionCard.tsx
@@ -11,12 +11,10 @@ export function InstructionCard({ pathExists }: InstructionCardProps) {
return (
<PanelSectionRow>
<div style={STYLES.instructionCard}>
- <div style={{ fontWeight: 'bold', marginBottom: '8px', color: 'var(--decky-accent-text)' }}>
+ <div style={{ fontWeight: "bold", marginBottom: "8px", color: "var(--decky-accent-text)" }}>
{MESSAGES.instructionTitle}
</div>
- <div style={{ whiteSpace: 'pre-line' }}>
- {MESSAGES.instructionText}
- </div>
+ <div style={{ whiteSpace: "pre-line" }}>{MESSAGES.instructionText}</div>
</div>
</PanelSectionRow>
);