diff options
author | HesterG <hestergong@gmail.com> | 2023-05-24 01:55:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 17:55:51 +0000 |
commit | 0e84bd251486d0484f7ab4901231858acabf9237 (patch) | |
tree | 4874f9dc7314569f6518a6702815ae544f9aeb1e /templates/user | |
parent | 8080ace6fcf73a5fbe4a0dd71881228abd0c68b9 (diff) | |
download | gitea-0e84bd251486d0484f7ab4901231858acabf9237.tar.gz gitea-0e84bd251486d0484f7ab4901231858acabf9237.zip |
Fix double border and adjust width for user profile page (#24870)
Close #24848
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/profile.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 8d172a7d02..51d4a46a92 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -2,7 +2,7 @@ <div role="main" aria-label="{{.Title}}" class="page-content user profile"> <div class="ui container"> <div class="ui stackable grid"> - <div class="ui five wide column"> + <div class="ui four wide column"> <div class="ui card"> <div id="profile-avatar" class="content gt-df"> {{if eq .SignedUserID .ContextUser.ID}} @@ -120,8 +120,8 @@ </div> </div> </div> - <div class="ui eleven wide column"> - <div class="ui secondary stackable pointing tight menu"> + <div class="ui twelve wide column"> + <div class="gt-mb-4 gt-df"> {{template "user/overview/header" .}} </div> |