parent
fc04ef44d0
commit
afb8d09db3
|
|
@ -13,21 +13,20 @@
|
|||
@else
|
||||
<div class="space-y-3">
|
||||
@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">
|
||||
{{-- 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>
|
||||
|
||||
{{-- IP kleiner & monospace --}}
|
||||
<div class="text-[15px] font-mono text-white/85">{{ $r['ip'] }}</div>
|
||||
|
||||
{{-- Jail dezent rechts daneben --}}
|
||||
<span class="text-xs text-white/45">Jail: {{ $r['jail'] }}</span>
|
||||
{{-- IP klein + monospace, ohne Jail-Text --}}
|
||||
<span class="font-mono text-[13px] md:text-[14px] text-white/85 tracking-normal">
|
||||
{{ $r['ip'] }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<button
|
||||
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
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue