refactor(pages): apply terminal-SOC aesthetic to all 8 pages

This commit is contained in:
Knacky
2026-06-09 18:44:47 +02:00
parent ec7800ae38
commit 5cc830554c
8 changed files with 21 additions and 20 deletions

View File

@@ -130,7 +130,7 @@ export function TemplateFormPage(): JSX.Element {
<Link to="/admin/templates" className="btn-text-link text-[14px]">
Back to templates
</Link>
<h1 className="text-[44px] font-medium leading-none">
<h1 className="text-[32px] font-medium leading-none">
{isNew ? 'New template' : (existing.data?.name ?? 'Edit template')}
</h1>
</div>
@@ -173,6 +173,7 @@ export function TemplateFormPage(): JSX.Element {
onChange={(e) => setForm({ ...form, commands: e.target.value })}
disabled={isPending}
placeholder="e.g. mimikatz.exe&#10;sekurlsa::logonpasswords"
className="font-mono text-[14px]"
/>
</FormField>
@@ -228,7 +229,7 @@ export function TemplateFormPage(): JSX.Element {
type="button"
aria-label="Open MITRE matrix"
onClick={() => { setShowPicker(false); setShowMatrix(true); }}
className="flex-shrink-0 flex items-center justify-center w-9 h-9 rounded-md border border-steel text-graphite hover:text-ink hover:border-ink transition-colors"
className="flex-shrink-0 flex items-center justify-center w-9 h-9 rounded-none border border-steel text-graphite hover:text-ink hover:border-ink"
>
<Grid2x2 size={16} />
</button>