dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 814e8b6311db1c4cc217cfe3c27624d4e3d7282a
parent 6e0b874493fbb3f010ce9794791a6cc640107385
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Mon, 22 Jan 2024 23:42:36 -0800

fix poker help

Diffstat:
Mpkg/web/handlers/poker/poker.go | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go @@ -2102,9 +2102,9 @@ func buildHelpHtml() (html string) { html += ` <style> .heart::after { content: '♥'; display: block; } -.diamond::after { content: '♥'; display: block; } -.spade::after { content: '♥'; display: block; } -.club::after { content: '♥'; display: block; } +.diamond::after { content: '♦'; display: block; } +.spade::after { content: '♠'; display: block; } +.club::after { content: '♣'; display: block; } .help { position: absolute; z-index: 999999; left: 50px; top: 12px; } .help-content { display: none; } .help:hover .help-content { display: block; }