From 7dedfe9727a39cb47202f42c00a46de4b3e391a0 Mon Sep 17 00:00:00 2001 From: svetlagasheva Date: Tue, 27 Nov 2018 11:47:00 +0200 Subject: [PATCH] ceil func instead of round --- src/common/UserPanel/styles.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/UserPanel/styles.less b/src/common/UserPanel/styles.less index 43409b522..519335852 100644 --- a/src/common/UserPanel/styles.less +++ b/src/common/UserPanel/styles.less @@ -7,8 +7,8 @@ width: @user-panel-width; .user-info { - grid-template-columns: round((@user-panel-width * 0.2)) auto; - grid-template-rows: round((@user-panel-width * 0.1)) round((@user-panel-width * 0.1)); + grid-template-columns: ceil((@user-panel-width * 0.2)) auto; + grid-template-rows: ceil((@user-panel-width * 0.1)) ceil((@user-panel-width * 0.1)); padding: @spacing; } @@ -30,7 +30,7 @@ padding: @spacing 0; .label { - padding: round((@spacing * 0.6)) (2 * round((@spacing * 0.6))); + padding: ceil((@spacing * 0.6)) (2 * ceil((@spacing * 0.6))); } }