diff options
author | Unknwon <u@gogs.io> | 2016-03-13 17:37:44 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-13 17:37:44 -0400 |
commit | db4da7beecd6a8f65bfa264ba18a8cb12303921f (patch) | |
tree | e70f4669159a97ee538f305fce623452191b3ddb /public | |
parent | b4f47a762338abe6ce3a6e3d6d0896b8a387228d (diff) | |
download | gitea-db4da7beecd6a8f65bfa264ba18a8cb12303921f.tar.gz gitea-db4da7beecd6a8f65bfa264ba18a8cb12303921f.zip |
Add APIContext
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 3 | ||||
-rw-r--r-- | public/less/_user.less | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 3a04a140dd..7c7ea83c63 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2376,6 +2376,9 @@ footer .container .links > *:first-child { .user.settings .email.list .item:not(:first-child) .button { margin-top: -10px; } +.user.profile .ui.card #profile-avatar { + height: 290px; +} .user.profile .ui.card .username { display: block; } diff --git a/public/less/_user.less b/public/less/_user.less index 3e37011cfb..7cb95ab4fd 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -23,6 +23,9 @@ &.profile { .ui.card { + #profile-avatar { + height: 290px; + } .username { display: block; } |