You've already forked AstralRinth
forked from didirus/AstralRinth
* Start of app redesign * format * continue progress * Content page nearly done * Fix recursion issues with content page * Fix update all alignment * Discover page progress * Settings progress * Removed unlocked-size hack that breaks web * Revamp project page, refactor web project page to share code with app, fixed loading bar, misc UI/UX enhancements, update ko-fi logo, update arrow icons, fix web issues caused by floating-vue migration, fix tooltip issues, update web tooltips, clean up web hydration issues * Ads + run prettier * Begin auth refactor, move common messages to ui lib, add i18n extraction to all apps, begin Library refactor * fix ads not hiding when plus log in * rev lockfile changes/conflicts * Fix sign in page * Add generated * (mostly) Data driven search * Fix search mobile issue * profile fixes * Project versions page, fix typescript on UI lib and misc fixes * Remove unused gallery component * Fix linkfunction err * Search filter controls at top, localization for locked filters * Fix provided filter names * Fix navigating from instance browse to main browse * Friends frontend (#2995) * Friends system frontend * (almost) finish frontend * finish friends, fix lint * Fix lint --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> * Refresh macOS app icon * Update web search UI more * Fix link opens * Fix frontend build --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
114 lines
1.8 KiB
Vue
114 lines
1.8 KiB
Vue
<template>
|
|
<div class="w-full flex items-center justify-center flex-col gap-2">
|
|
<div class="title">Loading</div>
|
|
<div class="placeholder"></div>
|
|
<div class="placeholder"></div>
|
|
<div class="placeholder"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
<style scoped>
|
|
.title {
|
|
position: absolute;
|
|
z-index: 1;
|
|
font-weight: bold;
|
|
color: var(--color-contrast);
|
|
|
|
&::after {
|
|
content: '';
|
|
animation: dots 2s infinite;
|
|
}
|
|
}
|
|
|
|
@keyframes dots {
|
|
25% {
|
|
content: '';
|
|
}
|
|
50% {
|
|
content: '.';
|
|
}
|
|
75% {
|
|
content: '..';
|
|
}
|
|
0%,
|
|
100% {
|
|
content: '...';
|
|
}
|
|
}
|
|
|
|
.placeholder {
|
|
border-radius: var(--radius-lg);
|
|
width: 100%;
|
|
height: 4rem;
|
|
opacity: 0.25;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-color: var(--color-raised-bg);
|
|
animation: pop 4s ease-in-out infinite;
|
|
border: 1px solid transparent;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: linear-gradient(
|
|
-45deg,
|
|
transparent 30%,
|
|
rgba(196, 217, 237, 0.075) 50%,
|
|
transparent 70%
|
|
);
|
|
animation: shimmer 4s ease-in-out infinite;
|
|
}
|
|
|
|
&:nth-child(2)::before {
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
&:nth-child(3)::before {
|
|
animation-delay: 0.3s;
|
|
}
|
|
|
|
&:nth-child(4)::before {
|
|
animation-delay: 0.6s;
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
animation-delay: 0.3s;
|
|
}
|
|
|
|
&:nth-child(4) {
|
|
animation-delay: 0.6s;
|
|
}
|
|
}
|
|
|
|
@keyframes pop {
|
|
from {
|
|
opacity: 0.25;
|
|
border-color: transparent;
|
|
}
|
|
50% {
|
|
opacity: 0.5;
|
|
border-color: var(--color-button-bg);
|
|
}
|
|
to {
|
|
opacity: 0.25;
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
from {
|
|
transform: translateX(-80%);
|
|
}
|
|
50%,
|
|
to {
|
|
transform: translateX(80%);
|
|
}
|
|
}
|
|
</style>
|