feat: ship creator journey v2 and profile updates

This commit is contained in:
2026-04-12 21:42:07 +02:00
parent a2457f4e49
commit d5cff21ea2
335 changed files with 20147 additions and 1545 deletions

View File

@@ -78,6 +78,27 @@
font-medium hover:brightness-110 transition;
}
.btn-accent-solid {
color: #ffffff;
background: linear-gradient(180deg, #cc6f1d 0%, #a85412 100%);
border: 1px solid rgba(255, 196, 125, 0.24);
box-shadow: 0 12px 30px rgba(168, 84, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.btn-accent-solid:hover {
filter: brightness(1.05);
box-shadow: 0 16px 36px rgba(168, 84, 18, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-accent-solid:focus-visible {
outline: none;
box-shadow:
0 0 0 2px rgba(245, 158, 11, 0.46),
0 12px 30px rgba(168, 84, 18, 0.28),
inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-secondary {
@apply bg-nova-500/30 text-white px-5 py-2 rounded-lg
hover:bg-nova-500/50 transition;