14 lines
376 B
Plaintext
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
|