Skip to content

Commit

Permalink
Added spacing between buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Feb 12, 2015
1 parent 56e090f commit c26369f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/backend/users/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<div class="col-md-12">
<a href="{{ route('create/user') }}" class="btn btn-success pull-right"><i class="icon-plus-sign icon-white"></i> @lang('general.create')</a>
@if (Input::get('onlyTrashed'))
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users') }}">Show Current Users</a>
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users') }}" style="margin-right: 5px;">Show Current Users</a>
@else
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users?onlyTrashed=true') }}">Show Deleted Users</a>
<a class="btn btn-default pull-right" href="{{ URL::to('admin/users?onlyTrashed=true') }}" style="margin-right: 5px;">Show Deleted Users</a>
@endif

<h3>
Expand Down

0 comments on commit c26369f

Please sign in to comment.