summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-10-20 14:44:37 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-10-20 14:44:37 -0400
commitf454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a (patch)
tree215eb8bd51f97987ac08b01e97664cbf808c8904 /src
parent8dcfea10e22d783a8adc6b1564e10bd32777a665 (diff)
downloaddecky-lsfg-vk-f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a.tar.gz
decky-lsfg-vk-f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a.zip
add consistent headders and bump ver, recipe for tmp storage purge
Diffstat (limited to 'src')
-rw-r--r--src/components/Content.tsx26
1 files changed, 22 insertions, 4 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index 24dcb5f..28eefa7 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -102,10 +102,28 @@ export function Content() {
{/* FPS multiplier controls stay above profile selection when installed */}
{isInstalled && (
- <FpsMultiplierControl
- config={config}
- onConfigChange={handleConfigChange}
- />
+ <>
+ <PanelSectionRow>
+ <div
+ style={{
+ fontSize: "14px",
+ fontWeight: "bold",
+ marginTop: "8px",
+ marginBottom: "6px",
+ borderBottom: "1px solid rgba(255, 255, 255, 0.2)",
+ paddingBottom: "3px",
+ color: "white"
+ }}
+ >
+ FPS Multiplier
+ </div>
+ </PanelSectionRow>
+
+ <FpsMultiplierControl
+ config={config}
+ onConfigChange={handleConfigChange}
+ />
+ </>
)}
{/* Profile Management - only show if installed */}