This commit is contained in:
2024-06-14 14:56:16 +02:00
parent 2640d39a4f
commit 8dea4d69b3
4 changed files with 64 additions and 8 deletions

View File

@@ -66,14 +66,6 @@ nav > ul li:hover .sous{
color: #1399fc;
}
section.connexion {
display: flex;
justify-content: space-between;
@@ -86,3 +78,31 @@ div.authentification {
div.new {
width: 45%;
}
/* Styles pour les détails des pistes */
.track-list {
width: 100%;
margin: 0 auto;
}
.track-id {
display: flex;
justify-content: space-between;
padding: 10px;
border-bottom: 1px solid #ccc;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.track-name {
flex-grow: 1;
overflow: visible;
text-overflow: clip;
}
.track-time {
flex-shrink: 0;
margin-left: 20px;
}