summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
authorJonas Dellinger <jonas@dellinger.dev>2023-05-29 18:40:17 +0200
committerJonas Dellinger <jonas@dellinger.dev>2023-05-29 18:40:17 +0200
commitd21b221575bbbde3298441878e29efa46b6038c5 (patch)
tree587ba90b7389676c6394b9bda253130f5021323f /frontend/src
parent010feddf36646fb9695106bd64eab41e47e962fe (diff)
downloaddecky-loader-d21b221575bbbde3298441878e29efa46b6038c5.tar.gz
decky-loader-d21b221575bbbde3298441878e29efa46b6038c5.zip
quick fix: overwrite plugin list marginTop to be always 0v2.9.1-pre1
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/components/settings/pages/plugin_list/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/settings/pages/plugin_list/index.tsx b/frontend/src/components/settings/pages/plugin_list/index.tsx
index ce349393..17f6d99d 100644
--- a/frontend/src/components/settings/pages/plugin_list/index.tsx
+++ b/frontend/src/components/settings/pages/plugin_list/index.tsx
@@ -183,7 +183,7 @@ export default function PluginList() {
<FaDownload style={{ paddingLeft: '1rem' }} />
</DialogButton>
)}
- <DialogControlsSection>
+ <DialogControlsSection style={{ marginTop: 0 }}>
<ReorderableList<PluginData> entries={pluginEntries} onSave={onSave} interactables={PluginInteractables} />
</DialogControlsSection>
</DialogBody>