mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 22:45:20 +02:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
9 lines
650 B
Text
9 lines
650 B
Text
<% if ENV["HOSTING_PLATFORM"] == "render" %>
|
|
<%= styled_form_with model: Setting.new, url: settings_hosting_path, method: :patch, data: { controller: "auto-submit-form", "auto-submit-form-trigger-event-value" => "blur" } do |form| %>
|
|
<div class="space-y-4">
|
|
<h2 class="font-medium mb-1"><%= t(".title") %></h2>
|
|
<p class="text-secondary text-sm mb-4"><%= t(".description") %></p>
|
|
<%= form.url_field :render_deploy_hook, label: t(".render_deploy_hook_label"), placeholder: t(".render_deploy_hook_placeholder"), value: Setting.render_deploy_hook, data: { "auto-submit-form-target" => "auto" } %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|