Edit Body Tags
Hi, is there a way to edit the body tags?
I'm trying to include some
min-h-screen
to prevent a whitespace being created underneath the footer when scrolling, but I'm unable to add the settings to body1 Reply
You can juest define global css, e.g.
src/client/Main.css
, import it into your react code, ideally into "rootComponent" (https://wasp-lang.dev/docs/project/client-config#defining-a-common-layout), so it is always loaded, and there you go! In that global css you can say that min-h-screen
targets body
.