diff --git a/src/assets/css/BottomBar/BottomBar.scss b/src/assets/css/BottomBar/BottomBar.scss
index 2e982d18..35298ded 100644
--- a/src/assets/css/BottomBar/BottomBar.scss
+++ b/src/assets/css/BottomBar/BottomBar.scss
@@ -19,7 +19,6 @@
.art {
width: 3rem;
height: 3rem;
- border-radius: $smaller;
background-image: url("../../images/null.webp");
}
diff --git a/src/components/AlbumView/Header.vue b/src/components/AlbumView/Header.vue
index bc13ebf9..385b6905 100644
--- a/src/components/AlbumView/Header.vue
+++ b/src/components/AlbumView/Header.vue
@@ -15,7 +15,7 @@
- {{ props.album_info.count }} Tracks • {{ props.album_info.duration }} •
+ {{ props.album_info.count }} Tracks • {{ perks.formatSeconds(props.album_info.duration, "long") }} •
{{ props.album_info.date }}
diff --git a/src/components/LeftSidebar/AlbumArt.vue b/src/components/LeftSidebar/AlbumArt.vue
index 1e6af16c..2f638e77 100644
--- a/src/components/LeftSidebar/AlbumArt.vue
+++ b/src/components/LeftSidebar/AlbumArt.vue
@@ -1,7 +1,7 @@
diff --git a/src/components/shared/SongItem.vue b/src/components/shared/SongItem.vue
index 156d46d7..edf1cc1d 100644
--- a/src/components/shared/SongItem.vue
+++ b/src/components/shared/SongItem.vue
@@ -119,7 +119,6 @@ export default {
margin-right: 1rem;
display: grid;
place-items: center;
- border-radius: 0.5rem;
cursor: pointer;
}
diff --git a/src/components/shared/TrackItem.vue b/src/components/shared/TrackItem.vue
index 08898522..51128679 100644
--- a/src/components/shared/TrackItem.vue
+++ b/src/components/shared/TrackItem.vue
@@ -51,7 +51,7 @@ const playThis = (song) => {