Update Beatport slider layout and remove track meta
Removed genre and year metadata from Beatport slider track cards in script.js. Increased slider height and track info max-width in style.css to improve layout and visual presentation.
This commit is contained in:
parent
0d54e4a62a
commit
3395d697c2
2 changed files with 2 additions and 6 deletions
|
|
@ -18498,10 +18498,6 @@ function populateBeatportSlider(tracks) {
|
||||||
<p class="beatport-rebuild-artist-name">${track.artist}</p>
|
<p class="beatport-rebuild-artist-name">${track.artist}</p>
|
||||||
<p class="beatport-rebuild-album-name">New on Beatport</p>
|
<p class="beatport-rebuild-album-name">New on Beatport</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="beatport-rebuild-track-meta">
|
|
||||||
<span class="beatport-rebuild-genre">${track.genre}</span>
|
|
||||||
<span class="beatport-rebuild-year">${track.year}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
|
||||||
|
|
@ -4437,7 +4437,7 @@ body {
|
||||||
.beatport-rebuild-slider {
|
.beatport-rebuild-slider {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 400px;
|
height: 500px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
|
|
@ -4537,7 +4537,7 @@ body {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
max-width: 600px;
|
max-width: 1000px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.beatport-rebuild-track-info {
|
.beatport-rebuild-track-info {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue