Skip to content

Commit

Permalink
style : [product-page-details-tab] - trash icon is aligned on the sam…
Browse files Browse the repository at this point in the history
…e line as the features inputs (see feedback 3 - PR PrestaShop#35775)
  • Loading branch information
mattgoud committed Apr 26, 2024
1 parent 5c10baf commit 60db6b7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,29 @@

{%- block feature_value_row -%}
<div class="form-group row product-feature">
<div class="col-xl-3">
<div class="col-12 col-lg-3">
<fieldset class="form-group mb-0">
<label class="form-control-label">{{ form.feature_id.vars.label }}</label>
{{ form_widget(form.feature_id) }}
{{ form_errors(form.feature_id) }}
</fieldset>
</div>
<div class="col-xl-4">
<div class="col-12 col-lg-3">
<fieldset class="form-group mb-0">
<label class="form-control-label">{{ form.feature_value_id.vars.label }}</label>
{{ form_widget(form.feature_value_id) }}
{{ form_errors(form.feature_value_id) }}
</fieldset>
</div>
<div class="col-lg-11 col-xl-4">
<div class="col-12 col-lg-3">
<fieldset class="form-group mb-0">
<label class="form-control-label">{{ form.custom_value.vars.label }}</label>
{{ form_widget(form.custom_value_id) }}
{{ form_widget(form.custom_value) }}
{{ form_errors(form.custom_value) }}
</fieldset>
</div>
<div class="col-lg-1 col-xl-1">
<div class="col-12 col-lg-1">
{{ form_widget(form.delete) }}
</div>
</div>
Expand Down

0 comments on commit 60db6b7

Please sign in to comment.