Improve profile stat layout on low resolutions
This commit is contained in:
parent
141bfdc508
commit
8773fd901b
|
@ -701,10 +701,12 @@ video {
|
||||||
.profile-card-extra-links {
|
.profile-card-extra-links {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-statlist {
|
.profile-statlist {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -716,21 +718,26 @@ video {
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-statlist .tweets {
|
.profile-statlist .tweets {
|
||||||
flex-shrink: 2;
|
flex: 0.4 1 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-statlist .followers {
|
.profile-statlist .followers {
|
||||||
flex-grow: 2;
|
flex: 1 1 0;
|
||||||
|
padding: 0 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-statlist .following {
|
.profile-statlist .following {
|
||||||
flex-shrink: 1.5;
|
flex: 0.5 1 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-stat-header {
|
.profile-stat-header {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.profile-stat-num {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.timeline-tweet {
|
.timeline-tweet {
|
||||||
border-bottom: 1px solid #3e3e35;
|
border-bottom: 1px solid #3e3e35;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,15 +25,15 @@
|
||||||
<ul class="profile-statlist">
|
<ul class="profile-statlist">
|
||||||
<li class="tweets">
|
<li class="tweets">
|
||||||
<span class="profile-stat-header">Tweets</span>
|
<span class="profile-stat-header">Tweets</span>
|
||||||
<span>${$profile.tweets}</span>
|
<span class="profile-stat-num">${$profile.tweets}</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="followers">
|
<li class="followers">
|
||||||
<span class="profile-stat-header">Followers</span>
|
<span class="profile-stat-header">Followers</span>
|
||||||
<span>${$profile.followers}</span>
|
<span class="profile-stat-num">${$profile.followers}</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="following">
|
<li class="following">
|
||||||
<span class="profile-stat-header">Following</span>
|
<span class="profile-stat-header">Following</span>
|
||||||
<span>${$profile.following}</span>
|
<span class="profile-stat-num">${$profile.following}</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue