summaryrefslogtreecommitdiff
path: root/frontend/src/global-styles.css
blob: b55284c7e3503cf68ae85b21972ded2c377bc951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
}

.Button:hover {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.125);
}
bgstack15