Skip to content
Open
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
File renamed without changes.
6 changes: 6 additions & 0 deletions docs/content/roadmap/done.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "Completed Roadmap"
template = "roadmap-section.html"
[extra]
section = "done"
+++
6 changes: 6 additions & 0 deletions docs/content/roadmap/in-progress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "In Progress Roadmap"
template = "roadmap-section.html"
[extra]
section = "in-progress"
+++
6 changes: 6 additions & 0 deletions docs/content/roadmap/planned.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "Planned Roadmap"
template = "roadmap-section.html"
[extra]
section = "planned"
+++
46 changes: 44 additions & 2 deletions docs/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,48 @@ pre {
}
}

// =============================================================================
// ROADMAP TABS & LINKS
// =============================================================================

.roadmap-tabs {
margin: 1.5rem 0;
display: inline-flex;
gap: 0.5rem;
padding: 0.25rem;
border-radius: 999px;
background-color: var(--bg-tertiary);
}

.roadmap-tab {
padding: 0.4rem 0.9rem;
border-radius: 999px;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-muted);
background: transparent;
border: 1px solid transparent;
}

.roadmap-tab:hover {
color: var(--text);
}

.roadmap-tab.active {
background-color: var(--bg);
color: var(--text);
border-color: var(--border);
}

.column-footer {
margin-top: 1rem;
}

.roadmap-see-all {
font-size: 0.9rem;
font-weight: 500;
}

// =============================================================================
// NAVBAR
// =============================================================================
Expand Down Expand Up @@ -2476,10 +2518,10 @@ pre {

.roadmap-board {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;

@media (max-width: 900px) {
@media (max-width: 700px) {
grid-template-columns: 1fr;
}
}
Expand Down
Loading
Loading