parent
fc04ef44d0
commit
afb8d09db3
|
|
@ -13,21 +13,20 @@
|
||||||
@else
|
@else
|
||||||
<div class="space-y-3">
|
<div class="space-y-3">
|
||||||
@foreach ($rows as $r)
|
@foreach ($rows as $r)
|
||||||
<div class="flex items-center justify-between rounded-2xl border px-4 py-3 {{ $r['box'] }}">
|
<div class="flex items-center justify-between rounded-2xl border px-4 py-2.5 {{ $r['box'] }}">
|
||||||
<div class="flex items-center gap-3">
|
<div class="flex items-center gap-3">
|
||||||
{{-- Statuspunkt (nur Farbe bestimmt permanent/temporär) --}}
|
{{-- Statuspunkt: rot=permanent, gelb=temporär --}}
|
||||||
<span class="inline-block w-2.5 h-2.5 rounded-full {{ $r['dot'] }}"></span>
|
<span class="inline-block w-2.5 h-2.5 rounded-full {{ $r['dot'] }}"></span>
|
||||||
|
|
||||||
{{-- IP kleiner & monospace --}}
|
{{-- IP klein + monospace, ohne Jail-Text --}}
|
||||||
<div class="text-[15px] font-mono text-white/85">{{ $r['ip'] }}</div>
|
<span class="font-mono text-[13px] md:text-[14px] text-white/85 tracking-normal">
|
||||||
|
{{ $r['ip'] }}
|
||||||
{{-- Jail dezent rechts daneben --}}
|
</span>
|
||||||
<span class="text-xs text-white/45">Jail: {{ $r['jail'] }}</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
wire:click="unban('{{ $r['ip'] }}','{{ $r['jail'] }}')"
|
wire:click="unban('{{ $r['ip'] }}','{{ $r['jail'] }}')"
|
||||||
class="text-[13px] px-3 py-2 rounded-xl border {{ $r['btn'] }}">
|
class="text-[12px] px-3 py-1.5 rounded-xl border {{ $r['btn'] }}">
|
||||||
Entbannen
|
Entbannen
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue