commit fcfcd1ecb0f138c6f4552dd1d1ec54fb58290f53 parent 78c297e39bf352e11dfde0fbbd3189fdd846c81d Author: n0tr1v <n0tr1v@protonmail.com> Date: Wed, 6 Dec 2023 01:09:23 -0500 logs Diffstat:
| M | pkg/web/handlers/poker/poker.go | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go @@ -1090,7 +1090,7 @@ body { #yourCard1 { font-size: 22px; display: inline-block; margin-right: 15px; } #yourCard2 { font-size: 22px; display: inline-block; } #errorMsg { position: absolute; top: 530px; left: 150px; color: darkred; } -#eventLogs { position: absolute; bottom: 5px; right: 5px; width: 200px; height: 200px; border: 1px solid black; } +#eventLogs { position: absolute; bottom: 5px; right: 5px; width: 200px; height: 200px; border: 1px solid black; background-color: #ccc; } .timer { @@ -1154,6 +1154,7 @@ func PokerLogsHandler(c echo.Context) error { c.Response().Header().Set("Connection", "keep-alive") send(cssReset) + send(`<style>body { background-color: #ccc; }</style><div style="display:flex;flex-direction:column-reverse;">`) c.Response().Flush() Loop: