diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-22 17:09:59 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-22 17:09:59 -0400 |
| commit | b4313f8d6ff3a18b73bdc2f5972b9f17b02e2e9c (patch) | |
| tree | b3348ea7b1ff2e9169a211a8bfc8ba886818db03 /src | |
| parent | 200f301ecf7750738f5e2c8b5ac1becfeaa435d5 (diff) | |
| download | decky-lsfg-vk-b4313f8d6ff3a18b73bdc2f5972b9f17b02e2e9c.tar.gz decky-lsfg-vk-b4313f8d6ff3a18b73bdc2f5972b9f17b02e2e9c.zip | |
fix styling on buttons
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 32 |
1 files changed, 7 insertions, 25 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index bd73e9c..1a0107c 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -1,4 +1,4 @@ -import { PanelSectionRow, ToggleField, SliderField, DropdownItem, ButtonItem, Field, DialogButton, Focusable } from "@decky/ui"; +import { PanelSectionRow, ToggleField, SliderField, DropdownItem, DialogButton, Focusable } from "@decky/ui"; import { ConfigurationData } from "../config/configSchema"; import { MULTIPLIER, FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE, @@ -23,7 +23,7 @@ export function ConfigurationSection({ fontSize: "14px", fontWeight: "bold", marginTop: "16px", - marginBottom: "8px", + marginBottom: "16px", borderBottom: "1px solid rgba(255, 255, 255, 0.2)", paddingBottom: "4px", color: "white" @@ -33,31 +33,13 @@ export function ConfigurationSection({ </div> </PanelSectionRow> + {/* FPS Multiplier */} + <PanelSectionRow> - <div - style={{ - fontSize: "14px", - fontWeight: "bold", - marginTop: "16px", - marginBottom: "8px", - color: "white" - }} - > - FPS Multiplier - </div> - <div - style={{ - fontSize: "12px", - color: "#cccccc", - marginBottom: "8px" - }} - > - Traditional FPS multiplier value - </div> <Focusable - style={{ - marginTop: "10px", - marginBottom: "10px", + style={{ + marginTop: "10px", + marginBottom: "10px", display: "flex", justifyContent: "center", alignItems: "center" |
