6.25.2: Выравнивание текста в селекторе доски
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m7s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m7s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "play-life-web",
|
||||
"version": "6.25.1",
|
||||
"version": "6.25.2",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -67,6 +67,7 @@
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.board-label-archived {
|
||||
|
||||
@@ -388,7 +388,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) {
|
||||
{item.name}
|
||||
{item.estimated_remaining > 0 && (
|
||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
||||
({Math.round(item.estimated_remaining * 10) / 10})
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -730,7 +730,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
|
||||
{item.name}
|
||||
{item.estimated_remaining > 0 && (
|
||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
||||
({Math.round(item.estimated_remaining * 10) / 10})
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
@@ -801,7 +801,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
|
||||
{item.name}
|
||||
{item.estimated_remaining > 0 && (
|
||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
||||
({Math.round(item.estimated_remaining * 10) / 10})
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user