Increase the horizontal spacing in dossiers-table

This commit is contained in:
gregoirenovel 2017-10-17 18:50:28 +02:00
parent f2b0a0d5bc
commit 8adca7e067

View file

@ -6,7 +6,7 @@
th { th {
vertical-align: middle; vertical-align: middle;
padding: (2 * $default-spacer) 2px; padding: (2 * $default-spacer) $default-spacer;
} }
td { td {
@ -28,7 +28,7 @@
// In order to have identical height in the table header and the table rows, // 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 // 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) // (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; display: block;
} }
@ -58,5 +58,7 @@
.follow-col { .follow-col {
width: 190px; width: 190px;
text-align: right; text-align: right;
padding-left: $default-spacer;
padding-right: $default-spacer;
} }
} }