Use dt
parent
dc77753537
commit
3c543c2911
|
@ -129,8 +129,8 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-component {
|
.p-component {
|
||||||
font-family: var(--p-font-family);
|
font-family: ${dt('font.family')};
|
||||||
font-feature-settings: var(--p-font-feature-settings, normal);
|
font-feature-settings: ${dt('font.feature.settings')};
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
@ -163,8 +163,8 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-link {
|
.p-link {
|
||||||
font-family: var(--p-font-family);
|
font-family: ${dt('font.family')};
|
||||||
font-feature-settings: var(--p-font-feature-settings, normal);
|
font-feature-settings: ${dt('font.feature.settings')};
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
|
@ -188,12 +188,12 @@ export default {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
to {
|
to {
|
||||||
background-color: var(--p-mask-background);
|
background-color: ${dt('mask.background')};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@keyframes p-component-overlay-leave-animation {
|
@keyframes p-component-overlay-leave-animation {
|
||||||
from {
|
from {
|
||||||
background-color: var(--p-mask-background);
|
background-color: ${dt('mask.background')};
|
||||||
}
|
}
|
||||||
to {
|
to {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
Loading…
Reference in New Issue