commit: b8c165e7585859b4ff7bbb774723d900b7075465
parent 25726b80367cf97b519a05fbeb2cd0dd40724fb6
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 16 Feb 2020 05:35:03 +0100
StaticFE: center the bio
Diffstat:
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, @user.emoji) %> |
<%= link "@#{@user.nickname}@#{Endpoint.host()}", to: (@user.uri || @user.ap_id) %>
</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;
@@ -179,3 +180,16 @@ img.emoji {
padding: 0;
vertical-align: middle;
}
+
+/* ## user page ## */
+
+#pagination {
+ text-align: center;
+}
+#pagination a {
+ margin: 0 1em;
+}
+
+.user-bio {
+ text-align: center;
+}