Add a .vertical class to tables because this is not the default layout

This commit is contained in:
Mathieu Magnin 2017-07-27 15:30:25 +02:00
parent 1e61f1388b
commit 9b95a4732f
6 changed files with 21 additions and 16 deletions

View file

@ -4,25 +4,28 @@
.table {
width: 100%;
font-size: 14px;
line-height: 22px;
th,
td {
@include vertical-padding($default-spacer)
}
th {
text-align: left;
&.vertical {
font-size: 14px;
line-height: 22px;
&.header-section {
color: $blue;
th {
text-align: left;
&.header-section {
color: $blue;
font-weight: bold;
font-size: 20px;
}
}
td {
font-weight: bold;
font-size: 20px;
}
}
td {
font-weight: bold;
}
}