Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/* 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;
}
}
3 changes: 3 additions & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@
"apiKey": "phc_JS6XFROuNbhJtVCEdTSYk6gl5ArRrTNMpCcguAXlSPs"
}
},
"custom": {
"css": ["custom.css"]
},
"redirects": [
{
"source": "/hub",
Expand Down
Loading