From 798587868f66284439344f02ff88e0ead3848524 Mon Sep 17 00:00:00 2001 From: r Date: Sat, 22 Aug 2020 06:38:59 +0000 Subject: Fix invalid CSS syntax --- main.go | 2 +- static/style.css | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/main.go b/main.go index 3b000c7..87be0d2 100644 --- a/main.go +++ b/main.go @@ -75,7 +75,7 @@ func main() { appRepo := repo.NewAppRepo(appDB) customCSS := config.CustomCSS - if !strings.HasPrefix(customCSS, "http://") && + if len(customCSS) > 0 && !strings.HasPrefix(customCSS, "http://") && !strings.HasPrefix(customCSS, "https://") { customCSS = "/static/" + customCSS } diff --git a/static/style.css b/static/style.css index 8eb321d..d43449f 100644 --- a/static/style.css +++ b/static/style.css @@ -93,7 +93,7 @@ } .status-action * { - verical-align: center; + vertical-align: middle; } .status-action a.status-time { @@ -177,7 +177,6 @@ .status-reply-to { display: inline-block; - vertical-align: center; } .status-reply-to-link { @@ -219,13 +218,13 @@ } .user-profile-img-container { - display: inline-block + display: inline-block; + margin: 0 4px 0 0; } .user-profile-details-container { display: inline-block; vertical-align: top; - margin: 0 4px; } .user-profile-details-container>div { @@ -356,9 +355,7 @@ img.emoji { } .user-info { - margin-bottom: 8px; display: flex; - align-items: top; } .user-info-img { -- cgit v1.2.3