1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-04 13:34:10 +02:00

Update MkProgressBar.vue

This commit is contained in:
syuilo
2026-04-26 20:51:23 +09:00
parent f5dae1d4c8
commit a763c396bd

View File

@@ -33,7 +33,7 @@ const props = withDefaults(defineProps<{
border-radius: 999px; border-radius: 999px;
overflow: clip; overflow: clip;
background: linear-gradient(-45deg, var(--c2) 25%, var(--c1) 25%,var(--c1) 50%, var(--c2) 50%, var(--c2) 75%, var(--c1) 75%, var(--c1)); background: linear-gradient(-45deg, var(--c2) 25%, var(--c1) 25%,var(--c1) 50%, var(--c2) 50%, var(--c2) 75%, var(--c1) 75%, var(--c1));
background-size: 25px 25px; background-size: 30px 30px;
animation: stripe .8s infinite linear; animation: stripe .8s infinite linear;
&::before { &::before {
@@ -55,6 +55,6 @@ const props = withDefaults(defineProps<{
@keyframes stripe { @keyframes stripe {
0% { background-position-x: 0; } 0% { background-position-x: 0; }
100% { background-position-x: -25px; } 100% { background-position-x: -30px; }
} }
</style> </style>