Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Visual dashboard bugfixes #1528

Merged
merged 4 commits into from
Feb 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Visual dashboard bugfixes
  • Loading branch information
caendesilva committed Feb 7, 2024
commit b29144752aca2167dabf4e6fddf63cea8646cf7d
6 changes: 3 additions & 3 deletions packages/realtime-compiler/resources/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
@endif
</div>
@else
<table class="table table-bordered">
<table class="table table-bordered d-block overflow-x-auto">
<tr>
@foreach(['Page Type', 'Route Key', 'Source File', 'Output File', 'Identifier'] as $header)
<th>{{ $header }}</th>
Expand Down Expand Up @@ -288,7 +288,7 @@
There are no media files yet. Why not add some?
</div>
@else
<div class="container d-flex flex-wrap" style="margin: 0 -0.5rem">
<div class="container d-flex flex-wrap px-0">
@foreach(\Hyde\Support\Filesystem\MediaFile::all() as $mediaFile)
<div class="col-lg-4 p-2 d-flex flex-grow-1">
<figure class="card w-100 p-2 mb-0">
Expand All @@ -310,7 +310,7 @@
</div>
<div class="col">
<div class="row flex-nowrap justify-content-start">
<p class="col-auto text-truncate mb-0 pe-2">
<p class="col-auto text-truncate mb-0 pe-2" style="max-width: 210px;">
<strong title="{{ $mediaFile->getPath() }}">{{ $mediaFile->getName() }}</strong>
</p>
<div class="col px-0 text-nowrap">
Expand Down