Skip to content

Commit

Permalink
поправил верстку объявлений
Browse files Browse the repository at this point in the history
  • Loading branch information
visavi committed Jul 3, 2018
1 parent 1486fd5 commit 01b5a96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/admin/boards/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<div class="row mb-3">
@foreach ($boards->chunk(3) as $chunk)
@foreach ($chunk as $board)
<div class="col-md-3 col-sm-6">
<div class="col-md-3 col-6">
<a href="/admin/boards/{{ $board->id }}">{{ $board->name }}</a> {{ $board->count_items }}
</div>
@endforeach
Expand Down
2 changes: 1 addition & 1 deletion resources/views/boards/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<div class="row mb-3">
@foreach ($boards->chunk(3) as $chunk)
@foreach ($chunk as $board)
<div class="col-md-3 col-sm-6">
<div class="col-md-3 col-6">
<a href="/boards/{{ $board->id }}">{{ $board->name }}</a> {{ $board->count_items }}
</div>
@endforeach
Expand Down

0 comments on commit 01b5a96

Please sign in to comment.