Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ ol li:last-child {
}
}
.content {
padding: 0 var(--space-l) 2rem;
padding: 0 var(--space-2xl) 2rem;
}

.header__logo-small {
Expand Down Expand Up @@ -1857,6 +1857,7 @@ a:hover {
display: flex;
flex-direction: row;
gap: 1rem;
word-break: break-word;
align-items: flex-start;
color: oklch(var(--color-brand));

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{{- if isset . "md" -}}
<!-- Show markdown if "md" is provided -->
{{- $bannerPage := readFile .md -}}
<div class="banner{{ if .type }} banner-{{ .type }}{{ end }}" data-grid="first-two-thirds">
<div class="banner{{ if .type }} banner-{{ .type }}{{ end }}">
{{ $bannerPage | markdownify }}
</div>
{{- else -}}
Expand Down
Loading