add top albums and top tracks widgets to profile

This commit is contained in:
2026-03-02 22:50:30 -08:00
parent 6e0e53eb64
commit 56475df1a0
7 changed files with 600 additions and 3 deletions

View File

@@ -770,6 +770,22 @@ a.button:hover {
border-radius: 10px;
}
.top-albums {
width: 50%;
margin: 15px 0;
padding: 10px;
background: #1a1a1a;
border-radius: 10px;
}
.top-tracks {
width: 50%;
margin: 15px 0;
padding: 10px;
background: #1a1a1a;
border-radius: 10px;
}
.top-artists-controls {
display: flex;
flex-direction: column;
@@ -777,13 +793,34 @@ a.button:hover {
margin-bottom: 10px;
}
.top-albums-controls {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 10px;
}
.top-tracks-controls {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 10px;
}
#top-artists-display {
min-height: 150px;
}
#top-albums-display {
min-height: 150px;
}
#top-tracks-display {
min-height: 150px;
}
.top-artists-controls h3 {
margin: 0;
color: #fff;
}
.controls-row {