diff options
author | r <r@freesoftwareextremist.com> | 2020-08-22 06:38:59 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-08-22 06:41:49 +0000 |
commit | 798587868f66284439344f02ff88e0ead3848524 (patch) | |
tree | d2308ee4cec3c76f550e1ea78f487f0fce7bc862 | |
parent | 61020d8837745f4b1632bd31e54017abeff7862a (diff) | |
download | bloat-798587868f66284439344f02ff88e0ead3848524.tar.gz bloat-798587868f66284439344f02ff88e0ead3848524.zip |
Fix invalid CSS syntax
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | static/style.css | 9 |
2 files changed, 4 insertions, 7 deletions
@@ -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 { |