mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 19:56:39 +00:00
[frontend] Reduce width of profile img with screen width (#615)
The commit makes the profile image on the profile page reduce in width if the screen width is less then it's normal width while maintaining it's 1:1 aspect ration. Signed-off-by: Sashanoraa <sasha@noraa.gay>
This commit is contained in:
parent
8de9b7a34b
commit
323dbca4f7
|
@ -34,13 +34,33 @@ main {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile .basic .avatar img {
|
.profile .basic .avatar-container {
|
||||||
height: 25em;
|
position: relative;
|
||||||
width: 25em;
|
width: 100%;
|
||||||
object-fit: cover;
|
max-width: 25em;
|
||||||
border-radius: 10px;
|
}
|
||||||
|
|
||||||
|
.profile .basic .avatar-container .avatar {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.profile .basic .avatar-container .avatar img {
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 10px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile .basic .avatar-container:before {
|
||||||
|
content: "";
|
||||||
|
float: left;
|
||||||
|
padding-top: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.profile .basic .displayname {
|
.profile .basic .displayname {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
|
|
|
@ -34,15 +34,34 @@ main {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar-container {
|
||||||
img {
|
position: relative;
|
||||||
height: 25em;
|
width: 100%;
|
||||||
width: 25em;
|
max-width: 25em;
|
||||||
object-fit: cover;
|
|
||||||
border-radius: 10px;
|
.avatar {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
img {
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 10px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.avatar-container:before {
|
||||||
|
content: "";
|
||||||
|
float: left;
|
||||||
|
padding-top: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.displayname {
|
.displayname {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
<div class="basic">
|
<div class="basic">
|
||||||
<a href="{{.account.URL}}" class="displayname">{{if .account.DisplayName}}{{.account.DisplayName}}{{else}}{{.account.Username}}{{end}}</a>
|
<a href="{{.account.URL}}" class="displayname">{{if .account.DisplayName}}{{.account.DisplayName}}{{else}}{{.account.Username}}{{end}}</a>
|
||||||
<a href="{{.account.URL}}" class="username">@{{.account.Username}}</a>
|
<a href="{{.account.URL}}" class="username">@{{.account.Username}}</a>
|
||||||
<a href="{{.account.Avatar}}" class="avatar"><img src="{{.account.Avatar}}"></a>
|
<div class="avatar-container">
|
||||||
|
<a href="{{.account.Avatar}}" class="avatar"><img src="{{.account.Avatar}}"></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="detailed">
|
<div class="detailed">
|
||||||
<h2>About @{{.account.Username}}</h2>
|
<h2>About @{{.account.Username}}</h2>
|
||||||
|
|
Loading…
Reference in a new issue