diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-10 10:14:36 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-10 10:14:36 +0200 |
commit | 457625591d125dc340b46757a986d4d3a33368f9 (patch) | |
tree | b7722018c1858d0574fd30d1a657e650225a476b /app | |
parent | 73615d7a790ffac70720369948545d0173c30852 (diff) |
Styling for paragraphs in statuses
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/components.scss | 8 | ||||
-rw-r--r-- | app/assets/stylesheets/stream_entries.scss | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index f1308b11d..409ba31f8 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -54,6 +54,14 @@ word-wrap: break-word; font-weight: 300; + p { + margin-bottom: 20px; + + &:last-child { + margin-bottom: 0; + } + } + a { color: #d9e1e8; text-decoration: none; diff --git a/app/assets/stylesheets/stream_entries.scss b/app/assets/stylesheets/stream_entries.scss index 25a536e24..d91ce20cf 100644 --- a/app/assets/stylesheets/stream_entries.scss +++ b/app/assets/stylesheets/stream_entries.scss @@ -161,6 +161,14 @@ padding-bottom: 15px; color: #282c37; + p { + margin-bottom: 18px; + + &:last-child { + margin-bottom: 0; + } + } + a { color: #2b90d9; text-decoration: none; |