diff --git a/packages/app/app/components/ArtistView/PopularTracks/index.tsx b/packages/app/app/components/ArtistView/PopularTracks/index.tsx index 5bb5d14223..044c490940 100644 --- a/packages/app/app/components/ArtistView/PopularTracks/index.tsx +++ b/packages/app/app/components/ArtistView/PopularTracks/index.tsx @@ -29,7 +29,7 @@ export const AddAllButton: React.FC = ({ primary href='#' onClick={handleAddAll} - className={styles.add_button} + className={styles.add_all_button} aria-label={t('add-all')} > {t('add-all')} diff --git a/packages/app/app/components/ArtistView/PopularTracks/styles.scss b/packages/app/app/components/ArtistView/PopularTracks/styles.scss index 492ba3900b..197ff7ab67 100644 --- a/packages/app/app/components/ArtistView/PopularTracks/styles.scss +++ b/packages/app/app/components/ArtistView/PopularTracks/styles.scss @@ -26,10 +26,10 @@ background: lighten($background, 5%); } } -} -.ui.button.add_button { - text-align: left; - margin-bottom: 0.5rem; - max-width: 10em; + .ui.button.add_all_button { + text-align: left; + margin-bottom: 0.5rem; + max-width: 10em; + } }