Update navbar styling and fix subtitle padding

This commit is contained in:
Andras Bacsai
2024-03-22 13:47:54 +01:00
parent ec051eba38
commit 503b86ac13
6 changed files with 9 additions and 12 deletions

View File

@@ -11,7 +11,6 @@
</x-slide-over>
</div>
<div class="subtitle">All your projects are here.</div>
<div class="grid gap-2 lg:grid-cols-2">
@forelse ($projects as $project)
<div class="gap-2 border border-transparent cursor-pointer box group" x-data

View File

@@ -6,14 +6,14 @@
@if ($tags->count() === 0)
<div>No tags yet defined yet. Go to a resource and add a tag there.</div>
@else
<x-forms.select wire:model.live="tag" label="Tags">
<x-forms.select wire:model.live="tag">
<option value="null" disabled selected>Select a tag</option>
@foreach ($tags as $oneTag)
<option value="{{ $oneTag->name }}">{{ $oneTag->name }}</option>
@endforeach
</x-forms.select>
@if ($tag)
<div>
<div class="pt-5">
<div class="flex items-end gap-2 ">
<div class="w-[500px]">
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />