Кнопка добавления в списке желаний
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 51s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 51s
This commit is contained in:
@@ -5,22 +5,35 @@
|
||||
}
|
||||
|
||||
.add-wishlist-button {
|
||||
width: 100%;
|
||||
padding: 0.75rem 1rem;
|
||||
background: linear-gradient(to right, #6366f1, #8b5cf6);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 0.5rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
background: transparent;
|
||||
border: 2px dashed #6b8dd6;
|
||||
border-radius: 18px;
|
||||
padding: 0;
|
||||
transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
margin-bottom: 1.5rem;
|
||||
transition: all 0.2s;
|
||||
aspect-ratio: 5 / 6;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.add-wishlist-button:hover {
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(107, 141, 214, 0.2);
|
||||
background-color: rgba(107, 141, 214, 0.05);
|
||||
border-color: #5b7fc7;
|
||||
}
|
||||
|
||||
.add-wishlist-icon {
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
color: #6b8dd6;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.section-divider {
|
||||
|
||||
Reference in New Issue
Block a user