diff --git a/app/javascript/application.scss b/app/javascript/application.scss index c125349d..63ea5369 100644 --- a/app/javascript/application.scss +++ b/app/javascript/application.scss @@ -50,3 +50,7 @@ button[disabled] .enabled { .base-checkbox { @apply checkbox rounded bg-white checkbox-sm no-animation; } + +.base-radio { + @apply radio bg-white radio-sm; +} diff --git a/app/views/email_settings/index.html.erb b/app/views/email_settings/index.html.erb index e6448859..e0cd1fcc 100644 --- a/app/views/email_settings/index.html.erb +++ b/app/views/email_settings/index.html.erb @@ -1,9 +1,12 @@
+ Configure your to send emails (TODO) +
<% value = @encrypted_config.value || {} %> <%= form_for @encrypted_config, url: settings_email_index_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %> <%= f.fields_for :value do |ff| %> @@ -32,14 +35,14 @@ <%= ff.email_field :from_email, value: value['from_email'], required: true, class: 'base-input' %>