refactor(ui): remove unnecessary padding from deployment, backup, and logs sections

This commit is contained in:
Andras Bacsai
2025-06-17 10:40:53 +02:00
parent 204ad0fa3d
commit d2f84a177a
4 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
<livewire:project.application.heading :application="$application" /> <livewire:project.application.heading :application="$application" />
<div class="flex flex-col gap-2 pb-10" <div class="flex flex-col gap-2 pb-10"
@if (!$skip) wire:poll.5000ms='reload_deployments' @endif> @if (!$skip) wire:poll.5000ms='reload_deployments' @endif>
<div class="flex items-end gap-2 pt-4"> <div class="flex items-end gap-2">
<h2>Deployments <span class="text-xs">({{ $deployments_count }})</span></h2> <h2>Deployments <span class="text-xs">({{ $deployments_count }})</span></h2>
@if ($deployments_count > 0) @if ($deployments_count > 0)
<x-forms.button disabled="{{ !$show_prev }}" wire:click="previous_page('{{ $default_take }}')"> <x-forms.button disabled="{{ !$show_prev }}" wire:click="previous_page('{{ $default_take }}')">

View File

@@ -5,7 +5,7 @@
<h1>Backups</h1> <h1>Backups</h1>
<livewire:project.shared.configuration-checker :resource="$database" /> <livewire:project.shared.configuration-checker :resource="$database" />
<livewire:project.database.heading :database="$database" /> <livewire:project.database.heading :database="$database" />
<div class="pt-6"> <div>
<div class="flex gap-2"> <div class="flex gap-2">
<h2 class="pb-4">Scheduled Backups</h2> <h2 class="pb-4">Scheduled Backups</h2>
<x-modal-input buttonTitle="+ Add" title="New Scheduled Backup"> <x-modal-input buttonTitle="+ Add" title="New Scheduled Backup">

View File

@@ -6,7 +6,7 @@
@if ($type === 'application') @if ($type === 'application')
<h1>Logs</h1> <h1>Logs</h1>
<livewire:project.application.heading :application="$resource" /> <livewire:project.application.heading :application="$resource" />
<div class="pt-4"> <div>
<h2>Logs</h2> <h2>Logs</h2>
@if (str($status)->contains('exited')) @if (str($status)->contains('exited'))
<div class="pt-2">The resource is not running.</div> <div class="pt-2">The resource is not running.</div>
@@ -41,7 +41,7 @@
@elseif ($type === 'database') @elseif ($type === 'database')
<h1>Logs</h1> <h1>Logs</h1>
<livewire:project.database.heading :database="$resource" /> <livewire:project.database.heading :database="$resource" />
<div class="pt-4"> <div>
<h2>Logs</h2> <h2>Logs</h2>
@if (str($status)->contains('exited')) @if (str($status)->contains('exited'))
<div class="pt-2">The resource is not running.</div> <div class="pt-2">The resource is not running.</div>
@@ -65,7 +65,7 @@
</div> </div>
@elseif ($type === 'service') @elseif ($type === 'service')
<livewire:project.service.heading :service="$resource" :parameters="$parameters" :query="$query" title="Logs" /> <livewire:project.service.heading :service="$resource" :parameters="$parameters" :query="$query" title="Logs" />
<div class="pt-4"> <div>
<h2>Logs</h2> <h2>Logs</h2>
@if (str($status)->contains('exited')) @if (str($status)->contains('exited'))
<div class="pt-2">The resource is not running.</div> <div class="pt-2">The resource is not running.</div>