From ddd4ddc020f0ee20cc34001c9ea4359601b084e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Hanol?= Date: Fri, 17 Nov 2017 12:42:19 +0100 Subject: [PATCH] missing 1px in .posters column when there are 5 posters and OP is most recent poster --- app/assets/stylesheets/desktop/topic-list.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/desktop/topic-list.scss b/app/assets/stylesheets/desktop/topic-list.scss index b7ebb95653e..963cec5950c 100644 --- a/app/assets/stylesheets/desktop/topic-list.scss +++ b/app/assets/stylesheets/desktop/topic-list.scss @@ -92,8 +92,8 @@ .posters { // we know there are up to 5 avatars of fixed size // will be overridden by media width queries on narrow displays to 1 avatar's width - width: 145px; - min-width: 145px; + width: 146px; + min-width: 146px; } .posters { > a { @@ -117,7 +117,7 @@ .sortable { cursor: pointer; &:hover { - background-color: $primary-low; + background-color: $primary-low; } @include unselectable; }