diff options
author | 2022-11-02 09:04:23 +0100 | |
---|---|---|
committer | 2022-11-02 09:04:23 +0100 | |
commit | 29a71cf828e90f89385d9b6bd2e68a1490a187c9 (patch) | |
tree | 0a2adcec3e824e373950580f154dff3c2a24ecfc /web/template | |
parent | [bugfix] create admin_account_actions table in tx (#940) (diff) | |
download | gotosocial-29a71cf828e90f89385d9b6bd2e68a1490a187c9.tar.xz |
[frontend] Fix #923 and markdown css (#925)
* fix url in CONTRIBUTING.md
* prevent img from overflow and allow to center the img
* fix #923 and guide browser to select entire username
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/profile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/profile.tmpl b/web/template/profile.tmpl index 98197f7cf..136496cdb 100644 --- a/web/template/profile.tmpl +++ b/web/template/profile.tmpl @@ -13,7 +13,7 @@ <div id="profile-basic-filler2"></div> <a href="{{.account.Avatar}}" class="avatar"><img src="{{.account.Avatar}}" alt="{{if .account.DisplayName}}{{.account.DisplayName}}{{else}}{{.account.Username}}{{end}}'s avatar"></a> <div class="displayname">{{if .account.DisplayName}}{{emojify .account.Emojis (escape .account.DisplayName)}}{{else}}{{.account.Username}}{{end}}</div> - <div class="username"><span>@{{.account.Username}}</span><span>@{{.instance.AccountDomain}}</span></div> + <div class="username">@{{.account.Username}}@{{.instance.AccountDomain}}</div> </div> <div class="detailed"> <div class="bio"> |