Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jace-roell committed Feb 6, 2024
1 parent 4473312 commit 2e5ce28
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

45 changes: 24 additions & 21 deletions blackjack.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
}
}
</style>

</head>
Expand Down

0 comments on commit 2e5ce28

Please sign in to comment.