fix(mod queue): align mobile remove button styling

This commit is contained in:
Tommaso Casaburi
2026-05-14 11:52:35 +07:00
parent 29f5e67c72
commit 36ecad640d
3 changed files with 31 additions and 7 deletions
+7 -3
View File
@@ -175,9 +175,13 @@ const ModQueueActions = ({ status, error, errorMessage, isPublishing, handleAppr
]
</span>
) : (
<button className={`button ${styles.cardRemoveButton}`} onClick={handleRemove} disabled={isPublishing}>
{t('remove')}
</button>
<span className={styles.cardRemoveButtonWrapper}>
[
<button className={styles.cardRemoveButton} onClick={handleRemove} disabled={isPublishing}>
{t('remove')}
</button>
]
</span>
)
) : null;