Fix icon for preferences donations

This commit is contained in:
ayumi-signal
2025-08-01 14:31:16 -07:00
committed by GitHub
parent 0b63aa9aa5
commit 85f472741b
2 changed files with 5 additions and 1 deletions

View File

@@ -300,6 +300,10 @@ $secondary-text-color: light-dark(
); );
} }
&--donations {
@include preferences-icon('../images/icons/v3/heart/heart.svg');
}
&--internal { &--internal {
@include preferences-icon('../images/icons/v3/internal/internal.svg'); @include preferences-icon('../images/icons/v3/internal/internal.svg');
} }

View File

@@ -2383,7 +2383,7 @@ export function Preferences({
type="button" type="button"
className={classNames({ className={classNames({
Preferences__button: true, Preferences__button: true,
'Preferences__button--appearance': true, 'Preferences__button--donations': true,
'Preferences__button--selected': isDonationsPage(page), 'Preferences__button--selected': isDonationsPage(page),
})} })}
onClick={() => setPage(SettingsPage.Donations)} onClick={() => setPage(SettingsPage.Donations)}