Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

[PAY-1660] Fix layout issues with TrackTile socials row with a lot of stats #3815

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@

.socialInfo {
display: inline-flex;
width: 100%;
flex: 1 1 100%;
min-width: 0;
justify-content: flex-start;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,15 @@
margin-right: var(--unit-20);
}

.small .bottomRight {
/* Match socialsRow to keep these in line */
height: 18px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

var?

}

.socialInfo {
display: inline-flex;
width: 100%;
flex: 1 1 100%;
min-width: 0;
justify-content: flex-start;
}

Expand Down