summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
authorLukas Senionis <warliukz@gmail.com>2022-09-27 07:51:39 +0300
committerGitHub <noreply@github.com>2022-09-26 21:51:39 -0700
commitbbad6bf2be5dfde573edb630967eb3f1cfb20502 (patch)
tree14030523f108601a0765d978f1c7f4163b311836 /frontend/src
parent4e04455163c310ba77abee1e38933610c8c9f564 (diff)
downloaddecky-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.tsx4
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>