1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-01 09:56:54 +01:00

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

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;
}
}
}
}