aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authorKaran Jayachandra <me@karanj.com>2025-11-15 15:48:19 +0100
committerKaran Jayachandra <me@karanj.com>2025-11-15 15:48:19 +0100
commit63c405504466bdadb64dfb3017bbfa942d7330f3 (patch)
treecacc0cb661494525f626521c60cff166eb7c22b6 /src/style.css
parent202cf761e5162720f25521a75ae7cd6a4e0e5456 (diff)
parentcabac66d56e8912941cef976d69a4fd3ec9ad928 (diff)
Merge branch 'develop' into 'main'
Working on improving tables See merge request KaranJayachandra/match_up!22
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css7
1 files changed, 6 insertions, 1 deletions
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