diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-06 22:00:56 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-06 22:00:56 +0200 |
commit | 296ce2d45aa0fc3d15a3971b6e81b00d59d4c3e3 (patch) | |
tree | 3f3579282704ebd054b551c26ccf6a3a1497979d /app | |
parent | 2af3abd279c7526112a6e98a680a9bce4dd014b9 (diff) |
Adjusting new CSS for smaller screens
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/stream_entries.scss | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/app/assets/stylesheets/stream_entries.scss b/app/assets/stylesheets/stream_entries.scss index 910fdf635..badae3841 100644 --- a/app/assets/stylesheets/stream_entries.scss +++ b/app/assets/stylesheets/stream_entries.scss @@ -46,13 +46,11 @@ } } - &.activity-stream-headless { - .entry:first-child { - border-radius: 4px 4px 0 0; + .entry:first-child { + border-radius: 4px 4px 0 0; - &:last-child { - border-radius: 4px; - } + &:last-child { + border-radius: 4px; } } @@ -75,12 +73,6 @@ } } - @media screen and (max-width: 360px) { - .avatar { - display: none; - } - } - .entry__container { overflow: hidden; } @@ -227,4 +219,14 @@ } } } + + @media screen and (max-width: 360px) { + .avatar { + display: none; + } + + .entry__container__container { + margin-left: 7px; + } + } } |