use text color css vars in unit/grid components
This commit is contained in:
parent
d238754d8b
commit
662c60a51c
6 changed files with 6 additions and 6 deletions
|
|
@ -129,6 +129,6 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: $font-small;
|
font-size: $font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $grey-50;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -162,6 +162,6 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: $font-small;
|
font-size: $font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $grey-50;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -169,6 +169,6 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: $font-small;
|
font-size: $font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $grey-50;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -435,7 +435,7 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: typography.$font-small;
|
font-size: typography.$font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: colors.$grey-50;
|
color: var(--text-secondary);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
||||||
|
|
@ -336,7 +336,7 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: typography.$font-small;
|
font-size: typography.$font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: colors.$grey-50;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge {
|
.badge {
|
||||||
|
|
|
||||||
|
|
@ -424,7 +424,7 @@
|
||||||
.name {
|
.name {
|
||||||
font-size: typography.$font-small;
|
font-size: typography.$font-small;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: colors.$grey-50;
|
color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.modifiers {
|
.modifiers {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue