Skip to content

Commit

Permalink
Fix desktop track tile title width (#7269)
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Jeffers <dylanaudius@Dylan-Audius.local>
  • Loading branch information
dylanjeffers and Dylan Jeffers authored Jan 22, 2024
1 parent 81e8c8a commit a8cca23
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@

.text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-overflow: ellipsis;
}

.topSection {
Expand All @@ -143,6 +143,7 @@
user-select: none;
margin-right: 132px;
padding-bottom: 2px;
display: flex;
}

.titleRow .skeleton {
Expand All @@ -159,7 +160,9 @@
}

.title {
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.isActive .title {
Expand Down
6 changes: 4 additions & 2 deletions packages/web/src/components/track/mobile/TrackTile.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@

.text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-overflow: ellipsis;
}

.titlesSkeleton div,
Expand All @@ -149,7 +149,9 @@
.title {
margin-top: auto;
padding-right: 5px;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.playIcon {
Expand Down

0 comments on commit a8cca23

Please sign in to comment.