14 lines
746 B
HTML
14 lines
746 B
HTML
<!-- Server List as Cards -->
|
|
<div class="flex flex-col bg-[#0a0a0a]/50 border border-[#00ff41]/10 overflow-hidden">
|
|
<div class="px-4 py-2 border-b border-[#00ff41]/10 bg-black flex justify-between items-center shrink-0">
|
|
<span class="text-[11px] uppercase tracking-[0.2em] font-bold text-[#00ff41]">Servers</span>
|
|
<span id="serverCount" class="text-[10px] opacity-40 text-[#00ff41]">0 endpoints</span>
|
|
</div>
|
|
|
|
<div id="serverListContainer" class="overflow-y-auto custom-scrollbar p-3 grid grid-cols-3 gap-2 max-h-[280px]">
|
|
<!-- Cards populated by JS -->
|
|
<div class="col-span-3 text-center py-6 text-[#00ff41]/30 text-xs uppercase">
|
|
No_Data // Awaiting_Sync
|
|
</div>
|
|
</div>
|
|
</div> |