diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-31 23:02:05 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-31 23:02:05 -0500 |
| commit | 82c359ef14d69d8644e52fa3797c7fbfb3c2f4a8 (patch) | |
| tree | 1a77d302851321d0016b0e6eb694c1c328da0d1f | |
| parent | 77d4d13a06cddc879d238d5cc89e47608d633921 (diff) | |
| download | Decky-Framegen-82c359ef14d69d8644e52fa3797c7fbfb3c2f4a8.tar.gz Decky-Framegen-82c359ef14d69d8644e52fa3797c7fbfb3c2f4a8.zip | |
fix: sort patch and unpatch buttons in UI
| -rwxr-xr-x | src/index.tsx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/index.tsx b/src/index.tsx index 8c48ad5..61dc8a5 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -237,20 +237,20 @@ function InstalledGamesSection() { </div> </PanelSectionRow> <PanelSectionRow> - <div style={{ display: 'flex', gap: '16px', marginTop: '12px' }}> - <ButtonItem - layout="below" - onClick={handlePatchClick} - > - Patch - </ButtonItem> - <ButtonItem - layout="below" - onClick={handleUnpatchClick} - > - Unpatch - </ButtonItem> - </div> + <ButtonItem + layout="below" + onClick={handlePatchClick} + > + Patch + </ButtonItem> + </PanelSectionRow> + <PanelSectionRow> + <ButtonItem + layout="below" + onClick={handleUnpatchClick} + > + Unpatch + </ButtonItem> </PanelSectionRow> </> )} |
