kushal.saha 1c84a162ac refactor(UI): interviewer panel
- overhaul the interviewer panel setup for more compact design
- assesment scheduling is now in a drawer
- replaced emojies with icon in candidate panel
2026-08-18 06:07:17 +00:00

11 lines
724 B
PHP

<div class="h-[220px] bg-[#050811] border-t border-white/10 flex flex-col shrink-0">
<div class="h-9 bg-[#090e1a] border-b border-white/10 flex items-center justify-between px-4 text-xs font-semibold text-slate-400">
<span class="flex items-center gap-1.5">
<i class="fa-solid fa-terminal text-slate-500"></i>
<span>EXECUTION OUTPUT TERMINAL (STDOUT / STDERR)</span>
</span>
<span id="run-status" class="text-slate-400">Ready</span>
</div>
<div id="terminal-output" class="flex-1 p-3.5 font-['Fira_Code',monospace] text-xs text-emerald-400 overflow-y-auto whitespace-pre-wrap leading-relaxed">// Press 'Run Code' to execute candidate solution live...</div>
</div>