Doing:
<Host class="flex items-center justify-center fixed left-0 top-0 h-screen w-full">
doesn't compile/build the classes.
But if the classes are moved to CSS, then work just fine:
:host {
@apply flex items-center justify-center fixed left-0 top-0 h-screen w-full;
}
Doing:
doesn't compile/build the classes.
But if the classes are moved to CSS, then work just fine: