27 lines
325 B
SCSS
27 lines
325 B
SCSS
|
|
||
|
// Alignment of datatable columns.
|
||
|
.date-column,
|
||
|
.amount-column {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
.peer-column,
|
||
|
.issuer-column {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.message-column {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
// Dates aren't that important
|
||
|
td.date-column {
|
||
|
color: #BBB;
|
||
|
}
|
||
|
|
||
|
// Love them euro signs
|
||
|
td.amount-column:before {
|
||
|
content: '€';
|
||
|
}
|
||
|
|