diff options
| author | Jonas Dellinger <jonas@dellinger.dev> | 2023-05-29 18:40:17 +0200 |
|---|---|---|
| committer | Jonas Dellinger <jonas@dellinger.dev> | 2023-05-29 18:40:17 +0200 |
| commit | d21b221575bbbde3298441878e29efa46b6038c5 (patch) | |
| tree | 587ba90b7389676c6394b9bda253130f5021323f | |
| parent | 010feddf36646fb9695106bd64eab41e47e962fe (diff) | |
| download | decky-loader-d21b221575bbbde3298441878e29efa46b6038c5.tar.gz decky-loader-d21b221575bbbde3298441878e29efa46b6038c5.zip | |
quick fix: overwrite plugin list marginTop to be always 0v2.9.1-pre1
| -rw-r--r-- | frontend/src/components/settings/pages/plugin_list/index.tsx | 2 |
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> |
