Increase the horizontal spacing in dossiers-table
This commit is contained in:
parent
f2b0a0d5bc
commit
8adca7e067
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue