6.16.4: Синяя обводка для разблокированных желаний
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m4s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m4s
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "play-life-web",
|
"name": "play-life-web",
|
||||||
"version": "6.16.3",
|
"version": "6.16.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -416,3 +416,8 @@
|
|||||||
.mini-wish-image.ready {
|
.mini-wish-image.ready {
|
||||||
border: 2px solid #3b82f6;
|
border: 2px solid #3b82f6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Синяя обводка для готового WishRowCard */
|
||||||
|
.wish-row-image.ready {
|
||||||
|
border: 2px solid #3b82f6;
|
||||||
|
}
|
||||||
|
|||||||
@@ -208,7 +208,7 @@ function WishRowCard({ wish, onClick, pendingScoresByProject = {}, position, min
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`wish-row-card ${positionClass}`} onClick={handleClick}>
|
<div className={`wish-row-card ${positionClass}`} onClick={handleClick}>
|
||||||
<div className="wish-row-image">
|
<div className={`wish-row-image ${isReady ? 'ready' : ''}`}>
|
||||||
{wish.image_url ? (
|
{wish.image_url ? (
|
||||||
<img src={wish.image_url} alt={wish.name} />
|
<img src={wish.image_url} alt={wish.name} />
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Reference in New Issue
Block a user