SIGN IN SIGN UP
continuedev / continue UNCLAIMED

⏩ Source-controlled AI checks, enforceable in CI. Powered by the open-source Continue CLI

32255 0 13 TypeScript
2025-08-06 15:41:07 -07:00
/* Custom CSS for Continue documentation */
/* Enable smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
/* Adjust scroll padding to account for fixed header */
scroll-padding-top: 80px;
}
/* Ensure proper spacing for heading anchors */
h1[id],
h2[id],
h3[id],
h4[id],
h5[id],
h6[id] {
scroll-margin-top: 80px;
}
/* Optional: Add a subtle highlight effect when navigating to anchors */
:target {
animation: highlight 2s ease-out;
}
@keyframes highlight {
0% {
background-color: rgba(255, 235, 59, 0.3);
}
100% {
background-color: transparent;
}
2025-08-06 15:43:54 -07:00
}