diff --git a/app/views/people/_sidebar.html.haml b/app/views/people/_sidebar.html.haml
index 2434fad2a..69836d534 100644
--- a/app/views/people/_sidebar.html.haml
+++ b/app/views/people/_sidebar.html.haml
@@ -2,7 +2,7 @@
%h3 friends
- for friend in @friends
- %li= person_image_link(friend)
+ = person_image_link(friend)
%li= link_to "view all", people_path
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 2f7929ca6..7e52893c8 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -117,14 +117,13 @@ ul#stream, ul#friend_stream {
margin-bottom: 5px; }
ul#friend_stream > li {
- padding: 0.2em 0;
- display: inline;
- border: none; }
- ul#friend_stream > li img {
- max-width: 30px;
- position: relative;
- float: none;
- display: inline; }
+ padding: 0.2em 0; }
+ul#friend_stream img {
+ width: 25px;
+ max-width: 25px;
+ position: relative;
+ float: none;
+ display: inline; }
li.message {
position: relative;
diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass
index f15e31d2f..41245e304 100644
--- a/public/stylesheets/sass/application.sass
+++ b/public/stylesheets/sass/application.sass
@@ -132,15 +132,13 @@ ul#stream, ul#friend_stream
ul#friend_stream
> li
:padding 0.2em 0
- :display inline
- :border none
- img
- :width 25px
- :max-width 25px
- :position relative
- :float none
- :display inline
+ img
+ :width 25px
+ :max-width 25px
+ :position relative
+ :float none
+ :display inline
li.message