Enha: responsive styles

This commit is contained in:
Grail Finder
2025-05-07 11:36:13 +03:00
parent 86ef35160c
commit 3ade7310a7
5 changed files with 16 additions and 11 deletions

View File

@ -1,12 +1,16 @@
{{define "room"}}
<div class="flex h-screen">
<div id="hello-user">
<p>Hello {{.Username}}</p>
</div>
<div id="hello-user">
<p>Hello {{.Username}}</p>
</div>
<hr />
<div class="flex justify-center">
<!-- Left Panel -->
{{template "teampew" "blue"}}
{{template "cardtable" .}}
<!-- Right Panel -->
{{template "teampew" "red"}}
</div>
<hr />
<div id="cardtable">
{{template "cardtable" .}}
</div>
{{end}}