From f505f2f228ca765e8b59abadac6db4a3bc2c9ec8 Mon Sep 17 00:00:00 2001 From: Jimmy Nguyen Date: Wed, 24 Apr 2024 19:08:54 -0500 Subject: [PATCH] Fix timer box css --- html/style_lobby.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html/style_lobby.css b/html/style_lobby.css index 8510c96..96816d1 100644 --- a/html/style_lobby.css +++ b/html/style_lobby.css @@ -111,9 +111,11 @@ select { #timerSection { margin-top: 20px; /* Adjust the margin as needed */ padding: 10px; /* Add padding for space around the timer */ - border: 2px solid #ccc; /* Add a border around the timer section */ + border: 4px solid #ccc; /* Add a border around the timer section */ border-radius: 5px; /* Add rounded corners to the border */ text-align: center; /* Center the timer text */ + height: 100px; /* Set a fixed height for the timer section */ + overflow: hidden; /* Hide any content that exceeds the specified height */ } /* Add styles for the timer text */