Files
docker-docs/layouts/partials/content-default.html
Arthur a949a7335a fix: visual touch-ups (#23012)
- **increase h2 mt**
- **tabs: remove rounded border**
- **fix page action icons**
- **increase article width**
- **reduce breadcrumb font size**
2025-07-07 12:41:58 +02:00

20 lines
621 B
HTML

<div class="flex w-full gap-8">
<article class="prose dark:prose-invert max-w-4xl min-w-0 flex-[2_2_0%]">
{{ partial "breadcrumbs.html" . }}
<div class="flex items-start justify-between">
<h1 data-pagefind-weight="10">{{ .Title }}</h1>
<div class="md-dropdown ml-auto hidden lg:block">
{{ partial "md-dropdown.html" . }}
</div>
</div>
<div class="block lg:hidden">
{{ partialCached "pagemeta.html" . . }}
<hr />
</div>
{{ .Content }}
</article>
<div class="-mt-8 -mr-20 hidden min-w-48 flex-1 lg:block">
{{ partial "aside.html" . }}
</div>
</div>