Skip to content

Commit

Permalink
fix: align margin 2 (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches authored Apr 21, 2024
1 parent 729c5df commit 46bd5da
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire/top-ten-leaderboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</table>
</div>
{{ $results->links(data: ['scrollTo' => false]) }}
<div class="notification is-light is-hidden-mobile mt-2">
<div class="notification is-light is-hidden-mobile mb-2 mt-2">
export to csv: <a href="{{ $analyticClass->displayExportUrl(10) }}" rel="nofollow">top 10</a>,
<a href="{{ $analyticClass->displayExportUrl(100) }}" rel="nofollow">top 100</a> or
<a href="{{ $analyticClass->displayExportUrl(1000) }}" rel="nofollow">top 1,000</a>.
Expand Down
2 changes: 1 addition & 1 deletion resources/views/pages/player.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@endif
<livewire:player-card :player="$player" />
@if (in_array($type, ['matches', 'custom', 'lan']))
<div class="notification">
<div class="notification mb-2">
<a class="is-small" href="{{ route('historyCsv', [$player, $type]) }}" rel="nofollow">export to csv</a>

@if (in_array($type, ['custom', 'matches', 'lan']))
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/game/export_card.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div class="notification">
<div class="notification mb-2">
<a class="is-small" href="{{ route('gameCsv', [$game]) }}" rel="nofollow">export to csv</a>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/** @var Carbon\Carbon $nextDate */
?>
@if ($nextDate)
<div class="notification is-light mt-2">
<div class="notification is-light mb-2">
Next refresh: <i>{{ $nextDate->diffForHumans() }}</i>
</div>
@endif
2 changes: 1 addition & 1 deletion resources/views/partials/overview/next-refresh.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/** @var Carbon\Carbon $nextDate */
?>
@if ($nextDate)
<div class="notification is-light mt-2">
<div class="notification is-light mt-2 mb-2">
@if ($nextDate->isPast())
<i>Refresh Pending</i>
@else
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/scrim/tabs/players.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<livewire:scrim-players :scrim="$scrim"></livewire:scrim-players>
<div class="notification">
<div class="notification mb-2">
<a class="is-small" href="{{ route('scrimPlayersCsv', [$scrim]) }}" rel="nofollow">export to csv</a>
</div>
@include('partials.global.under_construction')

0 comments on commit 46bd5da

Please sign in to comment.