mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
* fix: improve dark mode readability across the app * fix: improve dark mode support for asset percentage text * fix: apply suggested patch for theme-related improvements * chore: apply PR feedback – remove dark:, align with design tokens, update form builder * chore: revert background token and restore original style for visual consistency * chore: remove unnecessary class attributes from form fields using builder * refactor: move number_field and date_field into metaprogramming block * refactor: replace bg-divider-adaptive divs with <hr> and border-secondary * fix: apply requested changes and linting fixes
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
<head>
|
|
<title><%= content_for(:title) || "Maybe" %></title>
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
|
|
|
<%= javascript_include_tag "https://cdn.plaid.com/link/v2/stable/link-initialize.js" %>
|
|
<%= combobox_style_tag %>
|
|
|
|
<%= javascript_importmap_tags %>
|
|
<%= turbo_refreshes_with method: :morph, scroll: :preserve %>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="Maybe">
|
|
|
|
<meta name="msapplication-TileColor" content="#F9F9F9">
|
|
<meta name="theme-color" content="#F9F9F9">
|
|
|
|
<link rel="manifest" href="<%= pwa_manifest_path %>">
|
|
<link rel="apple-touch-icon" href="/logo-pwa.png">
|
|
<link rel="apple-touch-icon" sizes="512x512" href="/logo-pwa.png">
|
|
|
|
<%= yield :head %>
|
|
</head>
|