feat: reverted "sync" stamps back to colored dots

This commit is contained in:
2026-08-31 22:00:49 +02:00
parent 564c7c6338
commit 182704b9cd
3 changed files with 11 additions and 27 deletions
+10 -6
View File
@@ -106,15 +106,19 @@ const stampTitle = computed(() => {
}
.stamp {
display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--c-text-soft);
}
.stamp-synced {
color: var(--c-success);
}
.stamp-pending {
color: var(--c-accent-strong);
.stamp::before {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background-color: currentColor;
flex-shrink: 0;
}
.stamp-danger {