Skip to content

Commit

Permalink
Fix spacing between buttons (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kovah committed Apr 10, 2023
1 parent 78bc1b7 commit b47ee5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions resources/assets/sass/custom/_app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ code {
display: none !important;
}

.btn-cloud .btn {
margin: 2px;
}

.link-thumbnail {
box-shadow: inset 0 0 1px $secondary;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions resources/views/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class="badge border-0 {{ $stats['total_broken_links'] > 0 ? 'bg-danger' : 'bg-se
@lang('list.recent_lists')
</div>

<div class="card-body">
<div class="card-body btn-cloud">
@forelse($recent_lists as $list)
<a href="{{ route('lists.show', [$list->id]) }}" class="btn btn-light btn-sm">
{{ $list->name }}
Expand All @@ -145,7 +145,7 @@ class="badge border-0 {{ $stats['total_broken_links'] > 0 ? 'bg-danger' : 'bg-se
@lang('tag.recent_tags')
</div>

<div class="card-body">
<div class="card-body btn-cloud">
@forelse($recent_tags as $tag)
<a href="{{ route('tags.show', [$tag->id]) }}" class="btn btn-light btn-sm">
{{ $tag->name }}
Expand Down

0 comments on commit b47ee5d

Please sign in to comment.