Ron Au commited on
Commit
27a17c1
1 Parent(s): d752f48

feat(ui): Reduce padding for mobile

Browse files
Files changed (1) hide show
  1. source/ui/static/style.css +8 -1
source/ui/static/style.css CHANGED
@@ -3,7 +3,7 @@ html {
3
  }
4
 
5
  body {
6
- padding: 2rem;
7
  font-family: 'Lato', sans-serif;
8
  background-color: hsl(0 0% 1%);
9
  background: linear-gradient(hsl(0 0% 1%) 50%, hsl(0 0% 8%) 100%);
@@ -25,3 +25,10 @@ a, a:visited {
25
  text-decoration: none;
26
  font-weight: 700;
27
  }
 
 
 
 
 
 
 
 
3
  }
4
 
5
  body {
6
+ padding: 1rem;
7
  font-family: 'Lato', sans-serif;
8
  background-color: hsl(0 0% 1%);
9
  background: linear-gradient(hsl(0 0% 1%) 50%, hsl(0 0% 8%) 100%);
 
25
  text-decoration: none;
26
  font-weight: 700;
27
  }
28
+
29
+
30
+ @media (min-width: 600px) {
31
+ body {
32
+ padding: 2rem;
33
+ }
34
+ }