Generate a sticky navbar.
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
height: 56px;
padding: 0 24px;
background: #0f172a;
color: #f8fafc;
position: sticky;
top: 0;
z-index: 50;
}
.navbar a { color: #f8fafc; text-decoration: none; margin-left: 16px; }