fix css and html structure
This commit is contained in:
15
resources/views/Shop/Shelves/partials/display-type.blade.php
Normal file
15
resources/views/Shop/Shelves/partials/display-type.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
@include('components.form.button', [
|
||||
'id' => 'by_cards',
|
||||
'icon' => 'fa-th',
|
||||
'style' => ($display_by_rows ?? false) ? ' font-size: x-small;' : '',
|
||||
'class' => 'btn-secondary',
|
||||
'title' => 'Vue par vignettes',
|
||||
])
|
||||
|
||||
@include('components.form.button', [
|
||||
'id' => 'by_rows',
|
||||
'icon' => 'fa-list',
|
||||
'style' => (!$display_by_rows ?? true) ? ' font-size: x-small;' : '',
|
||||
'class' => 'btn-secondary',
|
||||
'title' => 'Vue par lignes',
|
||||
])
|
||||
@@ -10,13 +10,18 @@
|
||||
<input type="hidden" id="article_nature" name="article_nature" value="{{ $article_nature ?? false }}">
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-9">
|
||||
@include('Shop.Shelves.partials.breadcrumb')
|
||||
</div>
|
||||
<div class="col-3 text-right">
|
||||
@include('Shop.Shelves.partials.display-type')
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
@include('Shop._partials.display_filters')
|
||||
</div>
|
||||
<div class="col-6">
|
||||
@include('Shop.Shelves.partials.breadcrumb')
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<div class="col-9">
|
||||
@include('Shop.Shelves.partials.category_add')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user