Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mythos committed Jan 25, 2022
2 parents 9ecc89c + 3db4ea0 commit 390a5ea
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.2.5 (2022-01-25)

- Made table header for upcoming releases sticky

## 1.2.4 (2022-01-25)

- Increased height of upcoming releases and statistics
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
| Current application version.
|
*/
'version' => env('APP_VERSION', '1.2.4'),
'version' => env('APP_VERSION', '1.2.5'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/global-statistics.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="col-sm-12 col-md-12 col-lg-3">
<div class="card shadow-sm mb-2">
<div class="card-header">{{ __('Statistics') }}</div>
<div class="card-body d-flex flex-column table-responsive p-0" style="height: 280px; overflow-y: scroll;">
<div class="card-body d-flex flex-column table-responsive p-0" style="height: 280px; overflow-y: auto;">
<table class="table table-hover mb-0">
<tbody>
<tr class="table-danger">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/series/upcoming-series.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="card-header">{{ __('Upcoming Releases') }}</div>
<div class="card-body d-flex flex-column table-responsive p-0" style="height: 280px; overflow-y: scroll;">
<table class="table table-hover mb-0">
<thead class="table-dark">
<thead class="table-dark" style="position: sticky; top: 0;">
<tr>
<th scope="col" class="text-center" style="width: 7rem; min-width: 7rem;">{{ __('Publish Date') }}</th>
<th scope="col" style="min-width: 25rem;">{{ __('Title') }}</th>
Expand Down

0 comments on commit 390a5ea

Please sign in to comment.