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 */ + } + }