bloginamatrix.xyz/src/components/glass.nim
2024-01-08 23:05:33 -05:00

17 lines
419 B
Nim

import happyx
var
newClass = "flex items-center justify-center flex-1 m-14 max-md:m-7 max-sm:m-0 rounded-3xl max-sm:rounded-none bg-white/20 backdrop-blur-xl drop-shadow-lg noise text-5xl"
newHomeClass = newClass & " font-giga"
component Glass:
text: string
`template`:
tH(class=newClass):
{self.text}
component GlassHome:
text: string
`template`:
tH(class=newHomeClass):
{self.text}