Add new palette UI

This commit is contained in:
Eva 2023-04-27 12:44:11 +02:00 committed by Andrés Moya
parent 68c1d9afaf
commit 36b016a37b
83 changed files with 1710 additions and 267 deletions

View file

@ -31,16 +31,19 @@
line-height: 1.2;
}
@mixin buttonSmallTipography {
font-family: "worksans", sans-serif;
font-size: $fs-10;
font-weight: $fw400;
line-height: 1.2;
}
@mixin textEllipsis {
max-width: 99%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
}
@mixin twoLineTextEllipsis {
max-width: 99%;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}