summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Content.tsx')
-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 */}