aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
blob: 73550caabe0c5e7f7b7c61bcd4aa9ed31e47d39c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
#timer-display {
  text-align: center;
  width: fit-content;
}
table {
  font-size: 1.5em;
}
@media (max-width: 900px) {
  .button-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}