Rework usage of design components and tokens

This commit is contained in:
Andrés Moya
2023-08-28 14:49:21 +02:00
parent 5a312fd7b2
commit eed175dfe4
51 changed files with 166 additions and 94 deletions

View File

@@ -104,6 +104,23 @@
}
}
.button-warning {
@include buttonStyle;
@include flexCenter;
background-color: var(--button-warning-background-color-rest);
border: $s-1 solid var(--button-warning-border-color-rest);
color: var(--button-warning-foreground-color-rest);
}
.button-disabled {
@include buttonStyle;
@include flexCenter;
background-color: var(--button-disabled-background-color-rest);
border: $s-1 solid var(--button-disabled-border-color-rest);
color: var(--button-disabled-foreground-color-rest);
cursor: unset;
}
.button-tag {
@include buttonStyle;
@include flexCenter;
@@ -147,6 +164,14 @@
stroke-width: 1.33px;
}
.link {
background: unset;
border: none;
color: var(--link-foreground-color);
cursor: pointer;
text-decoration: none;
}
.asset-element {
@include titleTipography;
display: flex;