diff options
author | Lynx Kotoura <lynx@lv9.org> | 2017-07-24 23:52:47 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-24 16:52:47 +0200 |
commit | b3e7beb7c561ca54e8eb43613535ff1350968a99 (patch) | |
tree | 8b47b6590d2164c1162d6e8bf913b2168f531867 /app | |
parent | a549d1ae6b33d93743a0c0c3fb1575f07a58492a (diff) |
Perfectly center mastodon logo on mobile landing page (#4339)
Setting only padding-left made the logo left-shifted on mobile page. Margin-right was old setting for adjusting clearance between old logo and letter "Mastodon".
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/about.scss | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/styles/about.scss b/app/javascript/styles/about.scss index 01a341538..daf0e4ac5 100644 --- a/app/javascript/styles/about.scss +++ b/app/javascript/styles/about.scss @@ -455,12 +455,12 @@ .brand { a { padding-left: 0; + padding-right: 0; color: $white; } img { height: 32px; - margin-right: 10px; position: relative; top: 4px; left: -10px; @@ -728,7 +728,6 @@ .links .brand img { left: 0; top: 0; - margin-right: 0; } .hero { |