Skip to content

Commit a94cd04

Browse files
Add alpha to bar in dark-mode & missing margin-top
1 parent c3746ae commit a94cd04

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

css/components/blog.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.blog-intro {
22
font-size: var(--text-lg);
33
color: var(--color-light-text-secondary);
4-
margin-bottom: var(--space-xl);
54
}
65

76
.post-list {
7+
margin-top: var(--space-3xl);
88
padding: 0;
99
display: grid;
1010
gap: var(--space-xl);

css/components/releases.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.releases-intro {
22
font-size: var(--text-lg);
33
color: var(--color-light-text-secondary);
4-
margin-bottom: var(--space-xl);
54
}
65

76
.dark .releases-intro {

css/theme.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
--color-dark-border: #3a3a3a;
2828
--color-dark-border-subtle: #2a2a2a;
2929
--color-dark-header-footer-border: #151a24;
30-
--color-dark-header-bg: #151a24;
30+
--color-dark-header-bg: #151a24cc;
3131

3232
/* Card & Surface Colors */
3333
--color-light-surface: #ffffff;
3434
--color-light-surface-hover: #f8fafc;
35-
--color-dark-surface: #2a313c;
35+
--color-dark-surface: #2a313cfa;
3636
--color-dark-surface-hover: #262c36;
3737

3838
/* Code */

templates/releases.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h1>Releases</h1>
1212
<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>
1313
{% endif %}
1414

15-
<div class="release-list post-list">
15+
<div class="post-list">
1616
{% for page in paginator.pages %}
1717
<div class="post-list__item">
1818
<a class="post-card" href="{{ page.permalink | safe }}">

0 commit comments

Comments
 (0)