From cabac66d56e8912941cef976d69a4fd3ec9ad928 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Sat, 15 Nov 2025 14:30:38 +0100 Subject: Working on improving tables --- src/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/style.css') diff --git a/src/style.css b/src/style.css index 1bd8901..73550ca 100644 --- a/src/style.css +++ b/src/style.css @@ -1,6 +1,6 @@ .button-grid { display: grid; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); grid-gap: 15px; } #timer-display { @@ -10,3 +10,8 @@ table { font-size: 1.5em; } +@media (max-width: 900px) { + .button-grid { + grid-template-columns: repeat(1, 1fr); + } +} \ No newline at end of file -- cgit v1.3.1