mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
14 lines
404 B
Plaintext
14 lines
404 B
Plaintext
|
package card
|
||
|
|
||
|
templ Container() {
|
||
|
<div id="container" class="flex fixed inset-0 z-[99] w-screen min-h-screen">
|
||
|
<div class="relative flex flex-wrap items-center w-full min-h-full px-4 py-6 sm:px-6 md:px-8">
|
||
|
<div class="relative w-full max-w-screen-lg mx-auto">
|
||
|
<div class="flex flex-col items-center justify-center min-h-full gap-4">
|
||
|
{ children... }
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
}
|