Добавлена связь задач с желаниями
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 58s

This commit is contained in:
poignatov
2026-01-12 18:58:52 +03:00
parent 9fbe2081ed
commit 72a6a3caf9
15 changed files with 983 additions and 73 deletions

View File

@@ -370,3 +370,46 @@
color: #6b7280;
}
.wishlist-link-info {
padding: 0.75rem;
background-color: #f0f9ff;
border-radius: 6px;
border: 1px solid #bae6fd;
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
}
.wishlist-link-text {
font-size: 0.9rem;
color: #374151;
flex: 1;
}
.wishlist-link-text strong {
color: #6366f1;
font-weight: 600;
}
.wishlist-unlink-x {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
color: #9ca3af;
font-size: 1rem;
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
flex-shrink: 0;
}
.wishlist-unlink-x:hover {
background-color: rgba(239, 68, 68, 0.1);
color: #ef4444;
}