styles: Fix left sidebar indentation for PostCSS migration.

cssnano reduces this to a constant in a production build.  (We could
add postcss-calc if we wanted this reduced in development.)

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2019-08-30 10:01:28 -07:00 committed by Tim Abbott
parent d70e1bcdb7
commit d0634181b5
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ $far_left_gutter_size: 10px;
$left_col_size: 19px;
/* The full topic indentation includes 4px of indent in addition to
the above (and another 5px of padding not measured here) */
$topic_indent: $far_left_gutter_size + $left_col_size + 4px;
$topic_indent: calc($far_left_gutter_size + $left_col_size + 4px);
#left-sidebar #group-pm-list {
display: none;