perf(UI): left alignment for numbers in result tables, closes #249

This commit is contained in:
Fabio Di Stasio 2022-05-10 15:19:47 +02:00
parent ff272440bd
commit e02565c0d9
1 changed files with 0 additions and 6 deletions

View File

@ -1,14 +1,8 @@
@mixin type-colors($types) {
$numbers: ('int','tinyint','smallint','mediumint','float','double','decimal');
@each $type, $color in $types {
.type-#{$type} {
color: $color;
@if index($numbers, $type) {
text-align: right;
}
}
}
}