chore(release): snapshot 1.4.2

This commit is contained in:
Erik Silva
2025-12-17 13:36:23 -03:00
parent 2a112f169d
commit 99d828869a
95 changed files with 9933 additions and 1601 deletions

View File

@@ -67,16 +67,16 @@ html.dark {
}
::selection {
background-color: var(--color-brand-500);
color: var(--color-text-inverse);
background-color: var(--color-brand-100);
color: var(--color-text-primary);
}
/* Seleção em campos de formulário usa o gradiente padrão da marca */
/* Seleção em campos de formulário usa cor mais visível */
input::selection,
textarea::selection,
select::selection {
background: var(--color-gradient-brand);
color: var(--color-text-inverse);
background-color: var(--color-brand-200);
color: var(--color-text-primary);
}
.surface-card {
@@ -180,4 +180,35 @@ html.dark {
body {
@apply bg-background text-foreground;
}
}
/* Animações customizadas para o modal de boas-vindas */
@keyframes fade-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes progress {
0% {
width: 0%;
}
100% {
width: 100%;
}
}
.animate-fade-in {
animation: fade-in 0.8s ease-out;
}
.animate-progress {
animation: progress 3.5s ease-in-out;
}