mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
feat: pulse for not submitted files
This commit is contained in:
parent
87b73daf64
commit
eabde77ed5
1 changed files with 9 additions and 2 deletions
|
|
@ -19,7 +19,7 @@
|
|||
</script>
|
||||
|
||||
<!-- make red dot -->
|
||||
<div class="flex flex-row justify-between">
|
||||
<div class="flex flex-row justify-between animate-pulse div-{status}">
|
||||
<span class="mt-1 w-6 h-6 rounded-full {status}" />
|
||||
<!-- <h3 class="ml-8 font-bold text-xl">{title}</h3> -->
|
||||
</div>
|
||||
|
|
@ -29,15 +29,22 @@
|
|||
@apply rounded-full p-1;
|
||||
}
|
||||
|
||||
.div-submitted {
|
||||
@apply animate-none;
|
||||
}
|
||||
|
||||
.submitted {
|
||||
@apply bg-[#35e000ff];
|
||||
}
|
||||
|
||||
.uploaded {
|
||||
@apply bg-[#ff8530ff];
|
||||
}
|
||||
@apply animate-none;
|
||||
|
||||
}
|
||||
|
||||
.missing {
|
||||
@apply bg-red-700;
|
||||
}
|
||||
|
||||
</style>
|
||||
Loading…
Reference in a new issue