From c7374e8eb576fbb609f101898b8b7ab257d60943 Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Sat, 11 Dec 2021 13:46:05 +0300 Subject: [PATCH] add all albums view --- src/assets/css/global.scss | 3 +- src/components/AlbumsExplorer/AlbumList.vue | 163 +++++++++++++++++++- src/components/AlbumsExplorer/TopAlbums.vue | 39 ++++- src/components/FolderView/SearchBox.vue | 2 +- src/components/FolderView/SongList.vue | 12 +- src/components/PlaylistView/SongList.vue | 94 +++++++++++ src/views/AlbumsExplorer.vue | 2 - src/views/PlaylistView.vue | 4 +- 8 files changed, 293 insertions(+), 26 deletions(-) create mode 100644 src/components/PlaylistView/SongList.vue diff --git a/src/assets/css/global.scss b/src/assets/css/global.scss index 41a66c98..29cd41b6 100644 --- a/src/assets/css/global.scss +++ b/src/assets/css/global.scss @@ -2,6 +2,7 @@ --separator: #ffffff46; --green: #4ad168; } + * { box-sizing: border-box; } @@ -36,7 +37,7 @@ a { } .separator { - border-top: .1em $separator solid; + border-top: .1px $separator solid; color: transparent; margin: $small 0 $small 0; } diff --git a/src/components/AlbumsExplorer/AlbumList.vue b/src/components/AlbumsExplorer/AlbumList.vue index df247cc7..6c871c90 100644 --- a/src/components/AlbumsExplorer/AlbumList.vue +++ b/src/components/AlbumsExplorer/AlbumList.vue @@ -1,19 +1,89 @@ - \ No newline at end of file diff --git a/src/views/AlbumsExplorer.vue b/src/views/AlbumsExplorer.vue index ab16e29e..e9f16185 100644 --- a/src/views/AlbumsExplorer.vue +++ b/src/views/AlbumsExplorer.vue @@ -21,7 +21,5 @@ export default { .a-container { height: 100%; border-radius: $small; - // background-color: $card-dark; - // padding: $small; } \ No newline at end of file diff --git a/src/views/PlaylistView.vue b/src/views/PlaylistView.vue index 30dbe343..931cc744 100644 --- a/src/views/PlaylistView.vue +++ b/src/views/PlaylistView.vue @@ -14,7 +14,7 @@