diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index d6f0af67..48535073 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -332,10 +332,6 @@ svg { .designs { .design { margin-top: 1rem; - - .custom-control-label { - font-weight: bold; - } } } diff --git a/app/views/posts/_new_array_value.haml b/app/views/posts/_new_array_value.haml index 75c5bf4d..00cf293f 100644 --- a/app/views/posts/_new_array_value.haml +++ b/app/views/posts/_new_array_value.haml @@ -1,2 +1,3 @@ .col - %p= value + %p + %strong= value diff --git a/app/views/sites/_form.haml b/app/views/sites/_form.haml index f3055bf7..e35502b2 100644 --- a/app/views/sites/_form.haml +++ b/app/views/sites/_form.haml @@ -64,7 +64,7 @@ disabled: design.disabled, required: true, class: 'custom-control-input' = f.label "design_id_#{design.id}", design.name, - class: 'custom-control-label' + class: 'custom-control-label font-weight-bold' .flex-fill = sanitize_markdown design.description, tags: %w[p a strong em] @@ -93,7 +93,7 @@ = f.radio_button :licencia_id, licencia.id, checked: licencia.id == site.licencia_id, required: true, class: 'custom-control-input' - = f.label "licencia_id_#{licencia.id}", class: 'custom-control-label' do + = f.label "licencia_id_#{licencia.id}", class: 'custom-control-label font-weight-bold' do = licencia.name = sanitize_markdown licencia.description, tags: %w[p a strong em ul ol li h1 h2 h3 h4 h5 h6]