feat(miniapp): clarify balance breakdown

This commit is contained in:
2026-03-10 02:54:12 +04:00
parent 4b4f7d46e5
commit d55bf42c7b
5 changed files with 265 additions and 47 deletions

View File

@@ -243,6 +243,13 @@ button {
background: rgb(255 255 255 / 0.03);
}
.balance-item--accent {
background:
linear-gradient(180deg, rgb(247 179 137 / 0.12), rgb(255 255 255 / 0.03)),
rgb(255 255 255 / 0.03);
border-color: rgb(247 179 137 / 0.28);
}
.balance-item header,
.ledger-item header {
display: flex;
@@ -271,6 +278,12 @@ button {
gap: 8px;
}
.balance-breakdown {
display: grid;
gap: 10px;
margin-top: 12px;
}
.stat-card span {
color: #c6c2bb;
font-size: 0.82rem;
@@ -344,6 +357,10 @@ button {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.balance-breakdown {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.settings-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}