5.11.1: Стили TaskList и карточек Wishlist
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "play-life-web",
|
||||
"version": "5.11.0",
|
||||
"version": "5.11.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -285,8 +285,8 @@
|
||||
|
||||
.task-progression-value {
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
color: #374151;
|
||||
font-weight: 700;
|
||||
color: #9ca3af;
|
||||
min-width: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@@ -184,7 +184,15 @@
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.wishlist-card.faded {
|
||||
.wishlist-card-content {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.wishlist-card.faded .wishlist-card-content {
|
||||
opacity: 0.45;
|
||||
}
|
||||
|
||||
@@ -195,7 +203,7 @@
|
||||
border-radius: 50%;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
z-index: 10;
|
||||
z-index: 20;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -630,6 +630,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
<div className="wishlist-card-content">
|
||||
<button
|
||||
className="card-menu-button"
|
||||
onClick={(e) => handleMenuClick(item, e)}
|
||||
@@ -665,6 +666,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa
|
||||
return null
|
||||
})()}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user