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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN apk add --no-cache \
python3 \
libc6-compat

# Update npm to the latest version
RUN npm install -g npm@latest
# Use npm 10, which is compatible with Node 20
RUN npm install -g npm@10

RUN npm install --legacy-peer-deps

Expand Down
26 changes: 1 addition & 25 deletions src/pages/blogs/blogs-new.css
Original file line number Diff line number Diff line change
Expand Up @@ -1014,31 +1014,6 @@
color: #c084fc;
}

/* Cycle accent colors across cards — matching reference */
.articles-grid .article-card:nth-child(6n+1) .card-read-link {
color: #6366f1;
}

.articles-grid .article-card:nth-child(6n+2) .card-read-link {
color: #10b981;
}

.articles-grid .article-card:nth-child(6n+3) .card-read-link {
color: #ec4899;
}

.articles-grid .article-card:nth-child(6n+4) .card-read-link {
color: #f59e0b;
}

.articles-grid .article-card:nth-child(6n+5) .card-read-link {
color: #3b82f6;
}

.articles-grid .article-card:nth-child(6n+6) .card-read-link {
color: #8b5cf6;
}

/* Hide old card elements that are no longer in JSX */
.card-category {
display: none !important;
Expand Down Expand Up @@ -1312,6 +1287,7 @@
font-size: 13px;
}
}

/* ── Reading time ── */
.card-reading-time {
display: inline-flex;
Expand Down
Loading