logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 1f003701eeef8a45ec79d41018fba6e429552a65
parent: 58cfa90dd99d2324eb3344e31d8ee0420deb2658
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 16 Feb 2020 05:35:03 +0100

StaticFE: center the bio

Diffstat:

Mlib/pleroma/web/templates/static_fe/static_fe/profile.html.eex2+-
Mpriv/static/static/static-fe.css14++++++++++++++
2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/lib/pleroma/web/templates/static_fe/static_fe/profile.html.eex b/lib/pleroma/web/templates/static_fe/static_fe/profile.html.eex @@ -10,7 +10,7 @@ <%= raw Formatter.emojify(@user.name, emoji_for_user(@user)) %> | <%= link "@#{@user.nickname}@#{Endpoint.host()}", to: User.profile_url(@user) %> </h3> - <p><%= raw @user.bio %></p> + <p class="user-bio"><%= raw @user.bio %></p> </header> <main> diff --git a/priv/static/static/static-fe.css b/priv/static/static/static-fe.css @@ -1,3 +1,4 @@ +/* ## common ## */ body { background-color: #282c37; font-family: sans-serif; @@ -172,3 +173,16 @@ button { font-weight: 500; font-size: 16px; } + +/* ## user page ## */ + +#pagination { + text-align: center; +} +#pagination a { + margin: 0 1em; +} + +.user-bio { + text-align: center; +}