chore: css nits (#23330)

This commit is contained in:
Alex
2025-10-29 09:20:04 -05:00
committed by GitHub
parent b489bdf8d3
commit 2286444158
5 changed files with 20 additions and 8 deletions

View File

@@ -25,7 +25,7 @@
<ToastContainer {color}>
<ToastContent {color} {title} {description} {onClose} {icon}>
{#if button}
<div class="flex justify-end gap-2 px-2 pb-2">
<div class="flex justify-end gap-2 px-2 pb-2 me-3 mt-2">
<Button color={button.color ?? 'secondary'} size="small" onclick={onClick}>{button.text}</Button>
</div>
{/if}

View File

@@ -312,6 +312,7 @@
description: $t('album_info_updated'),
button: {
text: $t('view_album'),
color: 'primary',
onClick() {
return goto(resolve(`${AppRoute.ALBUMS}/${album.id}`));
},