Skip to content

Commit

Permalink
#55 Fix pages that don’t allow horizontal scrolling in the main body …
Browse files Browse the repository at this point in the history
…when required
  • Loading branch information
waseemsadiq committed Jun 5, 2022
1 parent ee8d58e commit 67ef525
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sites/dashboard/pages/php/php-info.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
visible: true
---

<section class="max-w-7xl mx-auto py-4 px-5">
<section class="max-w-7xl mx-auto py-4 px-5 overflow-x-scroll">
<?= file_get_contents('http://localhost/__info/php-info') ?>
</section>
2 changes: 1 addition & 1 deletion sites/dashboard/pages/php/php-opcache.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
---

<section class="max-w-7xl mx-auto py-4 px-5 h-screen">
<object type="text/html" data="http://localhost/__info/php-opcache" class="min-h-screen w-full"></object>
<object type="text/html" data="http://localhost/__info/php-opcache" class="min-h-screen w-full overflow-x-scroll"></object>
</section>
2 changes: 1 addition & 1 deletion sites/dashboard/pages/php/php-xdebug.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
summary: PHP-Xdebug for Joomlatools Server
visible: true
---
<section class="max-w-7xl mx-auto py-4 px-5<?= (!function_exists('xdebug_info')) ? ' h-full max-h-screen grid place-items-center' : '' ; ?>">
<section class="max-w-7xl mx-auto py-4 px-5 overflow-x-scroll<?= (!function_exists('xdebug_info')) ? ' h-full max-h-screen grid place-items-center' : '' ; ?>">

<? if (!function_exists('xdebug_info')) : ?>

Expand Down
6 changes: 5 additions & 1 deletion sites/dashboard/theme/css/output.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sites/dashboard/theme/css/output.min.css

Large diffs are not rendered by default.

0 comments on commit 67ef525

Please sign in to comment.