mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 08:47:49 +00:00
fix(pluginview): align icon and plugin name (#185)
This commit is contained in:
@@ -32,8 +32,8 @@ const PluginView: VFC = () => {
|
|||||||
.map(({ name, icon }) => (
|
.map(({ name, icon }) => (
|
||||||
<PanelSectionRow key={name}>
|
<PanelSectionRow key={name}>
|
||||||
<ButtonItem layout="below" onClick={() => setActivePlugin(name)}>
|
<ButtonItem layout="below" onClick={() => setActivePlugin(name)}>
|
||||||
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
|
<div style={{ display: 'flex', alignItems: "center", justifyContent: 'space-between' }}>
|
||||||
<div>{icon}</div>
|
{icon}
|
||||||
<div>{name}</div>
|
<div>{name}</div>
|
||||||
<NotificationBadge show={updates?.has(name)} style={{ top: '-5px', right: '-5px' }} />
|
<NotificationBadge show={updates?.has(name)} style={{ top: '-5px', right: '-5px' }} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user