28 lines
356 B
SCSS
28 lines
356 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
@import "mixins";
|
|
|
|
.table {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
|
|
th,
|
|
td {
|
|
@include vertical-padding($default-spacer)
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
|
|
&.header-section {
|
|
color: $blue;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
td {
|
|
font-weight: bold;
|
|
}
|
|
}
|