chore(admin-ui): remove inline styles from platform order show and add layout helpers

This commit is contained in:
萝卜
2026-03-14 07:47:58 +00:00
parent ea842272c0
commit e7cd9c5e45
2 changed files with 19 additions and 10 deletions

View File

@@ -162,6 +162,8 @@ button.btn-sm{
textarea.w-full,input.w-full{width:100%;}
.pre-wrap{white-space:pre-wrap;}
.w-100{width:100px;}
.w-120{width:120px;}
.w-140{width:140px;}
@@ -200,7 +202,14 @@ input.w-90{width:90px;}
.actions-spread{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;flex-wrap:wrap;}
.inline-links,.card-link-list{display:flex;gap:8px;flex-wrap:wrap;}
/* Layout helpers */
.flex-between{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;}
.items-center{align-items:center;}
.gap-12{gap:12px;}
.gap-10{gap:10px;}
.flex-between{display:flex;align-items:center;justify-content:space-between;}
.focus-box,.nav-box,.profile-box{padding:12px;border:1px solid #334155;border-radius:8px;}
.summary-box,.stat-box,.status-card,.status-link{padding:12px;border:1px solid #334155;border-radius:8px;}