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
2 changes: 1 addition & 1 deletion css/components/blog.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.blog-intro {
font-size: var(--text-lg);
color: var(--color-light-text-secondary);
margin-bottom: var(--space-xl);
}

.post-list {
margin-top: var(--space-3xl);
padding: 0;
display: grid;
gap: var(--space-xl);
Expand Down
1 change: 0 additions & 1 deletion css/components/releases.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.releases-intro {
font-size: var(--text-lg);
color: var(--color-light-text-secondary);
margin-bottom: var(--space-xl);
}

.dark .releases-intro {
Expand Down
4 changes: 2 additions & 2 deletions css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
--color-dark-border: #3a3a3a;
--color-dark-border-subtle: #2a2a2a;
--color-dark-header-footer-border: #151a24;
--color-dark-header-bg: #151a24;
--color-dark-header-bg: #151a24cc;

/* Card & Surface Colors */
--color-light-surface: #ffffff;
--color-light-surface-hover: #f8fafc;
--color-dark-surface: #2a313c;
--color-dark-surface: #2a313cfa;
--color-dark-surface-hover: #262c36;

/* Code */
Expand Down
2 changes: 1 addition & 1 deletion templates/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>Releases</h1>
<p class="releases-intro">Complete list of Phel releases, automatically generated from the <a href="https://github.com/phel-lang/phel-lang/releases">Phel GitHub releases</a>.</p>
{% endif %}

<div class="release-list post-list">
<div class="post-list">
{% for page in paginator.pages %}
<div class="post-list__item">
<a class="post-card" href="{{ page.permalink | safe }}">
Expand Down
Loading