fix(admin): align runner page width with other admin pages
runner.rs was the only admin page using max-w-5xl (1024px) while all others (system/comments/dashboard/posts/posts_trash/write) use max-w-7xl (1280px). The page's own comment claimed to align with dashboard/posts/system but the width class contradicted that.
This commit is contained in:
parent
d72495c002
commit
5c37b17cb8
@ -51,7 +51,7 @@ pub fn Runner() -> Element {
|
||||
let (overrides, override_error) = (parsed.read().0.clone(), parsed.read().1.clone());
|
||||
|
||||
rsx! {
|
||||
div { class: "w-full max-w-5xl mx-auto space-y-8",
|
||||
div { class: "w-full max-w-7xl mx-auto space-y-8",
|
||||
// 页头:与 dashboard / posts / system 对齐(h1 text-4xl + 底部分割线)
|
||||
div { class: "flex flex-col md:flex-row md:items-end justify-between gap-6 pb-8 border-b border-[var(--color-paper-border)]/50",
|
||||
div {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user