diff options
| author | Lukas Senionis <warliukz@gmail.com> | 2022-09-27 07:51:39 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-26 21:51:39 -0700 |
| commit | bbad6bf2be5dfde573edb630967eb3f1cfb20502 (patch) | |
| tree | 14030523f108601a0765d978f1c7f4163b311836 /frontend/src | |
| parent | 4e04455163c310ba77abee1e38933610c8c9f564 (diff) | |
| download | decky-loader-bbad6bf2be5dfde573edb630967eb3f1cfb20502.tar.gz decky-loader-bbad6bf2be5dfde573edb630967eb3f1cfb20502.zip | |
fix(pluginview): align icon and plugin name (#185)
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 67a203c9..c56d731f 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -32,8 +32,8 @@ const PluginView: VFC = () => { .map(({ name, icon }) => ( <PanelSectionRow key={name}> <ButtonItem layout="below" onClick={() => setActivePlugin(name)}> - <div style={{ display: 'flex', justifyContent: 'space-between' }}> - <div>{icon}</div> + <div style={{ display: 'flex', alignItems: "center", justifyContent: 'space-between' }}> + {icon} <div>{name}</div> <NotificationBadge show={updates?.has(name)} style={{ top: '-5px', right: '-5px' }} /> </div> |
