diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 27d64db9b..a8d793084 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -56,6 +56,7 @@ label { .site-config__label { display: flex; justify-content: space-between; + padding-bottom: var(--su-2); } .profile__group-toggle { diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 60d62675c..0582d9c72 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -285,7 +285,7 @@ module ApplicationHelper def admin_config_label(method, content = nil) content ||= raw("#{method.to_s.humanize}") if method.to_sym.in?(VerifySetupCompleted::MANDATORY_CONFIGS) - content = safe_join([content, raw("Required")]) + content = safe_join([content, raw("Required")]) end tag.label(content, class: "site-config__label crayons-field__label", for: "site_config_#{method}")