feat: refine content calendar experience

This commit is contained in:
2026-05-05 23:25:58 -04:00
parent b66c10b681
commit a7535d460d
72 changed files with 3233 additions and 1310 deletions

View File

@@ -35,13 +35,20 @@
.feedback-entry-button {
@apply flex h-12 items-center gap-2 rounded-full border px-4 text-sm font-bold shadow-lg transition-colors;
background: #172033;
border-color: rgba(255, 255, 255, 0.4);
color: #fffaf2;
background: var(--socialize-accent-strong);
border-color: rgba(255, 255, 255, 0.55);
color: #ffffff;
box-shadow: 0 16px 34px var(--socialize-accent-strong-shadow);
}
.feedback-entry-button:hover {
background: #0f766e;
background: color-mix(in srgb, var(--socialize-accent-strong) 82%, var(--socialize-primary));
box-shadow: 0 18px 38px var(--socialize-accent-strong-shadow);
}
.feedback-entry-button:focus-visible {
outline: 3px solid color-mix(in srgb, var(--socialize-accent) 35%, transparent);
outline-offset: 3px;
}
.feedback-entry-button span {