diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 14:30:38 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 14:30:38 +0100 |
| commit | cabac66d56e8912941cef976d69a4fd3ec9ad928 (patch) | |
| tree | cacc0cb661494525f626521c60cff166eb7c22b6 /src/style.css | |
| parent | 56eb065a8165b3f508a35734adbb00c76bee012a (diff) | |
Working on improving tables
Diffstat (limited to 'src/style.css')
| -rw-r--r-- | src/style.css | 7 |
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 |
