diff --git a/index.cfm b/index.cfm index a527fdc..542e966 100644 --- a/index.cfm +++ b/index.cfm @@ -12,7 +12,7 @@ :root { --brand-primary: #2563eb; --brand-primary-dark: #1d4ed8; --brand-gray: #d1d5db; --brand-grey-light: #f3f4f6; --background: #ffffff; --foreground: #1a1a1a; --muted: #6b7280; --destructive: #ef4444; --green: #22c55e; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: system-ui, sans-serif; font-size: 14px; color: var(--foreground); background: var(--brand-grey-light); min-height: 100vh; } - .topbar { background: var(--background); border-bottom: 1px solid var(--brand-gray); padding: 0 24px; height: 56px; display: flex; align-items: center; gap: 16px; } + .topbar { background: var(--background); border-bottom: 1px solid var(--brand-gray); padding: 0 24px; height: 56px; display: flex; align-items: center; gap: 16px; position: sticky; top: 0; z-index: 50; } .topbar img { height: 28px; } .topbar .title { font-weight: 600; font-size: 16px; } .content { max-width: 900px; margin: 32px auto; padding: 0 16px; } @@ -61,7 +61,7 @@