This repository has been archived on 2025-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
M6C9.de/src/components/Title.pug

14 lines
376 B
Plaintext

mixin Title(tag, isCentered)
- const width = isCentered ? "w-full text-center" : "w-3/4";
case tag
when "h2"
h2.font-bold.font-serif.text-xl.mb-2(class=`sm:text-2xl ${width}`)
block
when "h3"
h3.font-bold.font-serif.text-xl.mb-4(class=`sm:text-2xl ${width}`)
block
default
h1.font-bold.font-serif.text-xl.mb-4(class=`sm:text-2xl ${width}`)
block