The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/admin/info/SkeletonText.css

28 lines
490 B

.Admin__InformationPage__SkeletonText {
display: inline-flex;
min-width: 10em;
height: 1em;
animation: Admin__InformationPage__SkeletonText__animation 1s linear 0s infinite running;
opacity: 0.25;
background:
linear-gradient(
to right,
currentColor,
transparent 10%,
currentColor 20%
);
background-size: 100vw 100vh;
}
@keyframes Admin__InformationPage__SkeletonText__animation {
0% {
background-position: 0 0;
}
100% {
background-position: 100vw 0;
}
}