summaryrefslogtreecommitdiff
path: root/examples/snowpack/public/css/_globals.scss
blob: 960ff591ccd7e01de604069b2672002479ca5a79 (plain) (blame)
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
@use './var' as *;

html,
body {
  margin: 0;
  font-family: $body;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.25;
}

.header-logo,
.header-snowpack,
.header-snowpack-subtitle,
.pretty-font,
.version-number {
  font-weight: 600;
  font-family: $heading;
}