diff --git a/src/assets/css/global.scss b/src/assets/css/global.scss
index 29cd41b6..db66e1ef 100644
--- a/src/assets/css/global.scss
+++ b/src/assets/css/global.scss
@@ -4,6 +4,7 @@
}
* {
+ user-select: none;
box-sizing: border-box;
}
diff --git a/src/components/AlbumsExplorer/TopAlbums.vue b/src/components/AlbumsExplorer/TopAlbums.vue
index d36780ff..8dbe8f95 100644
--- a/src/components/AlbumsExplorer/TopAlbums.vue
+++ b/src/components/AlbumsExplorer/TopAlbums.vue
@@ -111,7 +111,7 @@ export default {
height: 1.2rem;
width: 1.2rem;
background-image: url(../../assets/icons/play.svg);
- background-size: contain;
+ background-size: 96%;
background-repeat: no-repeat;
background-position: center;
transition: all 0.2s ease-in-out;
diff --git a/src/components/ArtistsExplorer/ArtistsList.vue b/src/components/ArtistsExplorer/ArtistsList.vue
new file mode 100644
index 00000000..752eb4b7
--- /dev/null
+++ b/src/components/ArtistsExplorer/ArtistsList.vue
@@ -0,0 +1,135 @@
+
+