From 8adca7e067cb552a2da6f1d1ee6760ac06d182aa Mon Sep 17 00:00:00 2001 From: gregoirenovel Date: Tue, 17 Oct 2017 18:50:28 +0200 Subject: [PATCH] Increase the horizontal spacing in dossiers-table --- app/assets/stylesheets/new_design/dossiers_table.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/new_design/dossiers_table.scss b/app/assets/stylesheets/new_design/dossiers_table.scss index d0a01f2b0..c0b34500d 100644 --- a/app/assets/stylesheets/new_design/dossiers_table.scss +++ b/app/assets/stylesheets/new_design/dossiers_table.scss @@ -6,7 +6,7 @@ th { vertical-align: middle; - padding: (2 * $default-spacer) 2px; + padding: (2 * $default-spacer) $default-spacer; } td { @@ -28,7 +28,7 @@ // In order to have identical height in the table header and the table rows, // we compensate for the height difference between the biggest element of the header // (the Personnaliser button, 38px) and the biggest cell-link element of the rows (the label, 28px) - padding: calc((2 * #{$default-spacer}) + ((38px - 28px) / 2)) 2px; + padding: calc((2 * #{$default-spacer}) + ((38px - 28px) / 2)) $default-spacer; display: block; } @@ -58,5 +58,7 @@ .follow-col { width: 190px; text-align: right; + padding-left: $default-spacer; + padding-right: $default-spacer; } }