Socialify

Folder ..

Viewing styles.scss
31 lines (26 loc) • 566.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* You can add global styles to this file, and also import other style files */

html,
body {
  margin: 0;
  padding: 0;

  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.grid {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 240px auto;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #333;
    color: white;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background: #fff;
    color: black;
  }
}