mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 11:04:14 +00:00
* pwa(cleanup): enforce LF, head meta + icons, manifest orientation, remove static webmanifest * pwa(cleanup): add gitattributes, head meta/icons, manifest orientation; remove static manifest; small nav & dashboard fixes * pwa(cleanup): improve transaction drawer header layout with inline close button * fix: address PR review feedback - Add dom_id to transaction header for Turbo Stream updates (Codex) - Add pending badge next to date when transaction is pending (CodeRabbit) - Make close button keyboard-focusable by removing tabindex=-1 (CodeRabbit) - Fix settings nav horizontal scroll with flex-nowrap space-x-1 (CodeRabbit) * fix: localize 'Linked with Plaid' tooltip string (CodeRabbit) * Update .gitattributes Better comment smh * fix: align transaction/transfer dialog icons and update transfer drawer pattern - Fix icon alignment in transaction header (items-center instead of items-start) - Make transfer/linked icons consistent size and color - Update transfers/show.html.erb to use frame: drawer with hide_close_icon pattern - Match transfer dialog header layout with transaction details * fix: enhance header layout This in the transaction and transfer views, with consistent icon placement * fix: remove fixed height from HTML document class basically a regression issue pretty sure * fix: update dialog rendering to use 'frame' and hide close icon in headers * fix: update transaction type tabs layout for improved responsiveness * fix: conditionally render transaction type tabs based on account type
26 lines
606 B
Plaintext
26 lines
606 B
Plaintext
{
|
|
"name": "<%= j product_name %>",
|
|
"short_name": "<%= j product_name %>",
|
|
"icons": [
|
|
{
|
|
"src": "/logo-pwa.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512"
|
|
},
|
|
{
|
|
"src": "/logo-pwa.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512",
|
|
"purpose": "maskable"
|
|
}
|
|
],
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"display_override": ["window-controls-overlay", "minimal-ui"],
|
|
"scope": "/",
|
|
"orientation": "any",
|
|
"description": "<%= j product_name %> is your personal finance assistant.",
|
|
"theme_color": "#F9F9F9",
|
|
"background_color": "#F9F9F9"
|
|
}
|