Tokens for Image

This commit is contained in:
Cagatay Civici 2024-05-13 12:10:09 +03:00
parent fdfed1d9ac
commit 0f6f5736d6
6 changed files with 112 additions and 37 deletions

View file

@ -186,18 +186,18 @@ const theme = ({ dt }) => `
@keyframes p-component-overlay-enter-animation {
from {
background-color: transparent;
background: transparent;
}
to {
background-color: ${dt('mask.background')};
background: ${dt('mask.background')};
}
}
@keyframes p-component-overlay-leave-animation {
from {
background-color: ${dt('mask.background')};
background: ${dt('mask.background')};
}
to {
background-color: transparent;
background: transparent;
}
}
`;