aboutsummaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
authorEekle <96976531+Eekle@users.noreply.github.com>2022-06-10 12:06:34 +0100
committerGitHub <noreply@github.com>2022-06-10 19:06:34 +0800
commit4f1fb0f6971e3cd2ea679a58ff1e8bea88f29198 (patch)
treea00c448e754820e6c75f74af6a56c9024dcef9f5 /web_src
parent52c2e82813c2519cd08c9ecd66ef7b0815682770 (diff)
downloadgitea-4f1fb0f6971e3cd2ea679a58ff1e8bea88f29198.tar.gz
gitea-4f1fb0f6971e3cd2ea679a58ff1e8bea88f29198.zip
Make user profile image show full image on mobile (#19840)
* Make user profile image show full image on mobile
Diffstat (limited to 'web_src')
-rw-r--r--web_src/less/_user.less15
1 files changed, 4 insertions, 11 deletions
diff --git a/web_src/less/_user.less b/web_src/less/_user.less
index e192986819..4576d1c9e7 100644
--- a/web_src/less/_user.less
+++ b/web_src/less/_user.less
@@ -44,27 +44,20 @@
}
}
}
-
#profile-avatar {
background: none;
padding: 1rem 1rem .25rem;
-
+ justify-content: center;
img {
width: 100%;
height: auto;
object-fit: contain;
margin: 0;
- }
-
- @media @mediaSm {
- height: 250px;
- overflow: hidden;
-
- img {
- max-height: 767px;
- max-width: 767px;
+ @media @mediaSm {
+ width: 30vw;
}
}
+
}
@media @mediaSm {