aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
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