style(mod queue): fix loading string styling

This commit is contained in:
plebeius
2026-01-12 16:45:24 +01:00
parent 410fd541b3
commit ce35aa4249
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -99,6 +99,12 @@
color: var(--mod-queue-time-color);
}
.footer {
padding: 10px;
display: flex;
justify-content: center;
}
/* ModQueueRow styles */
.row {
display: flex;
+1 -1
View File
@@ -39,7 +39,7 @@ const ModQueueFooter = ({ hasMore, subplebbitAddresses }: ModQueueFooterProps) =
const loadingStateString = useFeedStateString(subplebbitAddresses) || t('loading');
return hasMore ? (
<div style={{ padding: '10px', textAlign: 'center' }}>
<div className={styles.footer}>
<LoadingEllipsis string={loadingStateString} />
</div>
) : null;