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",
|
"name": "play-life-web",
|
||||||
"version": "6.25.1",
|
"version": "6.25.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -67,6 +67,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.board-label-archived {
|
.board-label-archived {
|
||||||
|
|||||||
@@ -388,7 +388,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) {
|
|||||||
{item.name}
|
{item.name}
|
||||||
{item.estimated_remaining > 0 && (
|
{item.estimated_remaining > 0 && (
|
||||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
({Math.round(item.estimated_remaining * 10) / 10})
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -730,7 +730,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
|
|||||||
{item.name}
|
{item.name}
|
||||||
{item.estimated_remaining > 0 && (
|
{item.estimated_remaining > 0 && (
|
||||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
({Math.round(item.estimated_remaining * 10) / 10})
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
@@ -801,7 +801,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
|
|||||||
{item.name}
|
{item.name}
|
||||||
{item.estimated_remaining > 0 && (
|
{item.estimated_remaining > 0 && (
|
||||||
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
|
||||||
~{Math.round(item.estimated_remaining * 10) / 10}
|
({Math.round(item.estimated_remaining * 10) / 10})
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user