header: constrain ticker + browse bar to max-w-container (1200px) aligned with featured box

This commit is contained in:
Ryan Salazar
2026-05-22 01:23:55 +00:00
parent e6eb3cc99c
commit d2ef1ba6c3
2 changed files with 6 additions and 2 deletions

View File

@@ -128,10 +128,12 @@ export default function DualSpeedTicker() {
<style>{` <style>{`
.bbt-root { .bbt-root {
background: #000; background: #000;
border-top: 1px solid rgba(0,255,159,0.18); border: 1px solid rgba(0,255,159,0.18);
border-bottom: 1px solid rgba(0,212,255,0.18); border-bottom-color: rgba(0,212,255,0.18);
font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace; font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
color: #d1d5db; color: #d1d5db;
max-width: 1200px;
margin: 0 auto;
} }
.bbt-row { .bbt-row {
position: relative; position: relative;

View File

@@ -822,6 +822,8 @@ h1, h2, h3 {
border-bottom: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent);
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.02); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.02);
position: relative; position: relative;
max-width: 1200px;
margin: 0 auto;
} }
.bb-browse-bar::after { .bb-browse-bar::after {