2025-05-05 12:32:04 +00:00
|
|
|
.skeleton-wrapper {
|
2025-05-13 06:50:04 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton {
|
|
|
|
background: var(--background-color-gray);
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-image: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgba(255, 255, 255, 0) 0%,
|
|
|
|
rgba(255, 255, 255, 0.2) 20%,
|
2025-05-13 06:50:04 +00:00
|
|
|
rgba(255, 255, 255, 0.39) 60%,
|
2025-05-13 05:02:24 +00:00
|
|
|
rgba(255, 255, 255, 0) 100%
|
|
|
|
);
|
|
|
|
transform: translateX(-100%);
|
|
|
|
animation: shimmer 1.5s infinite;
|
2025-05-05 12:32:04 +00:00
|
|
|
}
|
2025-05-13 05:02:24 +00:00
|
|
|
}
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton-header {
|
|
|
|
margin-bottom: 20px;
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton-title {
|
|
|
|
width: 100%;
|
|
|
|
height: 25px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton-subtitle {
|
|
|
|
width: 100%;
|
|
|
|
height: 4px;
|
2025-05-05 12:32:04 +00:00
|
|
|
}
|
2025-05-13 05:02:24 +00:00
|
|
|
}
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 16px;
|
2025-05-05 12:32:04 +00:00
|
|
|
|
2025-05-13 05:02:24 +00:00
|
|
|
.skeleton-card {
|
|
|
|
width: 100%;
|
|
|
|
height: 15px;
|
2025-05-05 12:32:04 +00:00
|
|
|
}
|
2025-05-13 05:02:24 +00:00
|
|
|
}
|
2025-05-05 12:32:04 +00:00
|
|
|
}
|
|
|
|
|
2025-05-13 06:50:04 +00:00
|
|
|
.asset-category-title{
|
|
|
|
width: 60%;
|
|
|
|
height: 12px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.skeleton-content-asset{
|
|
|
|
display: flex;
|
|
|
|
height: calc(95px * 2 + 10px);
|
|
|
|
gap: 10px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
.skeleton-content {
|
|
|
|
gap: 8px;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 122px;
|
|
|
|
min-height: 95px;
|
|
|
|
.asset-name {
|
|
|
|
width: 40%;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
.asset {
|
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-05-05 12:32:04 +00:00
|
|
|
@keyframes shimmer {
|
2025-05-13 05:02:24 +00:00
|
|
|
100% {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
|
|
|
}
|