Refactor help button in navbar and boarding layout
This commit is contained in:
parent
01f027ac1b
commit
10e307f92b
@ -141,7 +141,6 @@ class="{{ request()->is('settings*') ? 'text-warning icon' : 'icon' }}" viewBox=
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@endif
|
@endif
|
||||||
@if (isSubscriptionActive() || isDev())
|
|
||||||
<li title="Send us feedback or get help!" class="hover:bg-transparent">
|
<li title="Send us feedback or get help!" class="hover:bg-transparent">
|
||||||
<div class="justify-center" wire:click="help" onclick="help.showModal()">
|
<div class="justify-center" wire:click="help" onclick="help.showModal()">
|
||||||
<svg class="icon" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
<svg class="icon" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
||||||
@ -150,7 +149,6 @@ class="{{ request()->is('settings*') ? 'text-warning icon' : 'icon' }}" viewBox=
|
|||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
@endif
|
|
||||||
<li class="pb-6" title="Logout">
|
<li class="pb-6" title="Logout">
|
||||||
<form action="/logout" method="POST" class=" hover:bg-transparent">
|
<form action="/logout" method="POST" class=" hover:bg-transparent">
|
||||||
@csrf
|
@csrf
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.base')
|
||||||
@section('body')
|
@section('body')
|
||||||
@if (isSubscriptionActive() || isDev())
|
|
||||||
<div title="Send us feedback or get help!" class="fixed top-0 right-0 p-2 px-4 pt-4 mt-auto text-xs">
|
<div title="Send us feedback or get help!" class="fixed top-0 right-0 p-2 px-4 pt-4 mt-auto text-xs">
|
||||||
<button class="flex items-center justify-center gap-2" wire:click="help" onclick="help.showModal()">
|
<button class="flex items-center justify-center gap-2" wire:click="help" onclick="help.showModal()">
|
||||||
<svg class="icon" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
<svg class="icon" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
||||||
@ -9,7 +8,6 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
|
||||||
<main class="min-h-screen hero">
|
<main class="min-h-screen hero">
|
||||||
<div class="hero-content">
|
<div class="hero-content">
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
|
Loading…
Reference in New Issue
Block a user