From e36d3b5d66a00ab9dda1f2c657a739935d85ecf8 Mon Sep 17 00:00:00 2001 From: whekin Date: Wed, 11 Mar 2026 20:21:42 +0400 Subject: [PATCH] refactor(miniapp): polish toolbar and control affordances --- .../miniapp/src/components/layout/top-bar.tsx | 12 +++- apps/miniapp/src/components/ui/icons.tsx | 67 +++++++++++++++++++ apps/miniapp/src/components/ui/index.ts | 1 + apps/miniapp/src/index.css | 53 +++++++++++++-- apps/miniapp/src/screens/house-screen.tsx | 21 ++++-- apps/miniapp/src/screens/ledger-screen.tsx | 6 +- 6 files changed, 145 insertions(+), 15 deletions(-) create mode 100644 apps/miniapp/src/components/ui/icons.tsx diff --git a/apps/miniapp/src/components/layout/top-bar.tsx b/apps/miniapp/src/components/layout/top-bar.tsx index 0142f93..3b4f841 100644 --- a/apps/miniapp/src/components/layout/top-bar.tsx +++ b/apps/miniapp/src/components/layout/top-bar.tsx @@ -1,4 +1,5 @@ import type { Locale } from '../../i18n' +import { GlobeIcon } from '../ui' type Props = { subtitle: string @@ -17,13 +18,17 @@ export function TopBar(props: Props) {

{props.title}

-