Files
docker-docs/layouts/shortcodes/cta.html
Arthur 038e6dc682 chore: update Tailwind to v4 (#22666)
- Extract classes to utilities and components.
- Reduce number of colors used.
- Harmonize button colors.
- Restyle admonitions.
- Move **Page options** button to main article.
- Various color tweaks.
2025-05-28 08:37:10 +01:00

12 lines
431 B
HTML

<div class="bg-amber-light-200 dark:bg-amber-dark-200 p-4" role="alert">
<div class="text-lg">{{ .Get "header" }}</div>
{{ .Get "body" | .Page.RenderString (dict "display" "block") }}
<div class="not-prose">
<a
href="{{ .Get "url" }}"
class="cursor-pointer rounded-sm bg-blue-500 px-4 py-2 text-white hover:bg-blue-400 dark:bg-blue-800 dark:hover:bg-blue-700"
>{{ .Get "cta" }}</a
>
</div>
</div>