Skip to content

Commit

Permalink
Modest styling improvement for individual sessions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyboggs committed Aug 28, 2024
1 parent 681216c commit 90f5114
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions curriculum/2024-2025.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ By the end of this, students should have a better understanding of how to approa
{% for session in site.sessions %}
{% if session.path contains '2024-2025' %}
{% assign session_date = session.path | split:"/" | last | split:"." | first %}
<section id="{{ session.title | slugify }}-{{ session_date }}">
<strong>{{ session_date | date: "%B %d, %Y" }} | {{ session.title }}</strong>
<section id="{{ session.title | slugify }}-{{ session_date }}" class="session">
<h3>{{ session_date | date: "%B %d, %Y" }} | {{ session.title }}</h3>
{{ session.content | markdownify }}
</section>
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ main {
}
}


.project + .project {
.project + .project,
.session + .session {
border-top: 2px dotted var(--blue-alt-lighter);
padding-top: 1rem;
margin-top: 3rem;
Expand Down

0 comments on commit 90f5114

Please sign in to comment.