wix-style-react
Version:
wix-style-react
50 lines (43 loc) • 892 B
CSS
.lightSkeleton {
margin-left: 30px;
margin-top: 18px;
}
.skeletonItem {
-st-states: long;
overflow: hidden;
position: relative;
height: 10px;
border-radius: 6.5px;
background-color: #464a64;
margin-left: 30px;
margin-top: 9px;
margin-bottom: 9px;
width: 79px;
}
.skeletonItem:long {
width: 114px;
}
.skeletonItem::after {
background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent 50%);
height: 10px;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
animation: moveRight 1s linear infinite;
transform: translateX(-100%);
content: ' ';
}
@keyframes moveRight {
to { transform: translateX(100%); }
}
.separator {
height: 30px;
};
.container {
flex-direction: column;
display: flex;
margin-top: 10px;
}
/* st-namespace-reference="../../../../src/SidebarNext/components/SidebarSkeleton.st.css" */