From 2e5ce2882a928a6dd20bcf01ff53545d52898b32 Mon Sep 17 00:00:00 2001 From: Jace Roell Date: Tue, 6 Feb 2024 17:36:20 -0500 Subject: [PATCH] Updates --- CNAME | 1 - blackjack.html | 45 ++++++++++++++++++++++++--------------------- 2 files changed, 24 insertions(+), 22 deletions(-) delete mode 100644 CNAME diff --git a/CNAME b/CNAME deleted file mode 100644 index 6f70416..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -jaceroell.dev \ No newline at end of file diff --git a/blackjack.html b/blackjack.html index 184577d..75b9080 100644 --- a/blackjack.html +++ b/blackjack.html @@ -178,28 +178,31 @@ /* Mobile Styles */ @media screen and (max-width: 600px) { - .container { - padding: 10px; - } - .leaderboard { - position: static; - width: auto; - margin-top: 20px; - } - #chat-container { - position: static; - width: auto; - margin-top: 20px; - height: auto; /* Adjusting height to fit content */ - max-height: none; /* Removing max-height constraint */ - } - #chat-messages { - max-height: none; /* Allowing chat messages to expand */ - } - #chat-input { - width: calc(100% - 70px); /* Adjusting width of input field */ - } + .container { + padding: 10px; + } + .leaderboard { + position: static; + width: auto; + margin-top: 20px; } + #leaderboard-list li:nth-child(n+4) { + display: none; /* Hide entries beyond the top 3 */ + } + #chat-container { + position: static; + width: auto; + margin-top: 20px; + height: auto; /* Adjusting height to fit content */ + max-height: none; /* Removing max-height constraint */ + } + #chat-messages { + max-height: none; /* Allowing chat messages to expand */ + } + #chat-input { + width: calc(100% - 70px); /* Adjusting width of input field */ + } + }