Update navbar styling and fix subtitle padding
This commit is contained in:
@@ -156,7 +156,7 @@ option {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navbar-main {
|
.navbar-main {
|
||||||
@apply flex items-end gap-6 pb-2 border-b-2 border-solid border-coolgray-200;
|
@apply flex items-center h-10 gap-6 pb-2 border-b-2 border-solid border-coolgray-200;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading {
|
.loading {
|
||||||
@@ -235,7 +235,7 @@ option {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.subtitle {
|
.subtitle {
|
||||||
@apply pt-2 pb-10;
|
@apply pt-2 pb-9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fullscreen {
|
.fullscreen {
|
||||||
|
|||||||
@@ -262,10 +262,10 @@
|
|||||||
<livewire:help />
|
<livewire:help />
|
||||||
</x-modal-input>
|
</x-modal-input>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li >
|
||||||
<form action="/logout" method="POST" class="mb-6 menu-item">
|
<form action="/logout" method="POST">
|
||||||
@csrf
|
@csrf
|
||||||
<button title="Logout" type="submit" class="flex gap-2">
|
<button title="Logout" type="submit" class="gap-2 mb-6 menu-item">
|
||||||
<svg class="icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
<svg class="icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill="currentColor"
|
<path fill="currentColor"
|
||||||
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2a9.985 9.985 0 0 1 8 4h-2.71a8 8 0 1 0 .001 12h2.71A9.985 9.985 0 0 1 12 22m7-6v-3h-8v-2h8V8l5 4z" />
|
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2a9.985 9.985 0 0 1 8 4h-2.71a8 8 0 1 0 .001 12h2.71A9.985 9.985 0 0 1 12 22m7-6v-3h-8v-2h8V8l5 4z" />
|
||||||
@@ -274,7 +274,6 @@
|
|||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
{{-- <li>
|
{{-- <li>
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
<div class="pb-6">
|
<div class="pb-6">
|
||||||
<h1>Security</h1>
|
<h1>Security</h1>
|
||||||
<div class="subtitle">Security related settings.</div>
|
<div class="subtitle">Security related settings.</div>
|
||||||
|
<nav class="navbar-main">
|
||||||
<nav class="pt-2 navbar-main">
|
|
||||||
<a href="{{ route('security.private-key.index') }}">
|
<a href="{{ route('security.private-key.index') }}">
|
||||||
<button>Private Keys</button>
|
<button>Private Keys</button>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<div class="flex-1 text-xl font-bold leading-6 dark:text-white">Dashboard</div>
|
{{-- <div class="flex-1 text-xl font-bold leading-6 dark:text-white">Dashboard</div> --}}
|
||||||
{{-- <a href="#">
|
{{-- <a href="#">
|
||||||
<span class="sr-only">Your profile</span>
|
<span class="sr-only">Your profile</span>
|
||||||
<img class="w-8 h-8 rounded-full bg-gray-50"
|
<img class="w-8 h-8 rounded-full bg-gray-50"
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
</x-slide-over>
|
</x-slide-over>
|
||||||
</div>
|
</div>
|
||||||
<div class="subtitle">All your projects are here.</div>
|
<div class="subtitle">All your projects are here.</div>
|
||||||
|
|
||||||
<div class="grid gap-2 lg:grid-cols-2">
|
<div class="grid gap-2 lg:grid-cols-2">
|
||||||
@forelse ($projects as $project)
|
@forelse ($projects as $project)
|
||||||
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
|
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
|
||||||
|
|||||||
@@ -6,14 +6,14 @@
|
|||||||
@if ($tags->count() === 0)
|
@if ($tags->count() === 0)
|
||||||
<div>No tags yet defined yet. Go to a resource and add a tag there.</div>
|
<div>No tags yet defined yet. Go to a resource and add a tag there.</div>
|
||||||
@else
|
@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>
|
<option value="null" disabled selected>Select a tag</option>
|
||||||
@foreach ($tags as $oneTag)
|
@foreach ($tags as $oneTag)
|
||||||
<option value="{{ $oneTag->name }}">{{ $oneTag->name }}</option>
|
<option value="{{ $oneTag->name }}">{{ $oneTag->name }}</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
</x-forms.select>
|
</x-forms.select>
|
||||||
@if ($tag)
|
@if ($tag)
|
||||||
<div>
|
<div class="pt-5">
|
||||||
<div class="flex items-end gap-2 ">
|
<div class="flex items-end gap-2 ">
|
||||||
<div class="w-[500px]">
|
<div class="w-[500px]">
|
||||||
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
<x-forms.input readonly label="Deploy Webhook URL" id="webhook" />
|
||||||
|
|||||||
Reference in New Issue
Block a user