File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ html {
2
+ /* Set automatic RTL direction depending on lang attribute */
3
+ @include set-rtl-direction ;
4
+
5
+ /* Apply border-box across the entire page. */
6
+ box-sizing : border-box ;
7
+
8
+ // HTML resets
9
+ font-family : $font-family-primary ;
10
+ line-height : $line-height-base ;
11
+
12
+ // Scroll resets
13
+ -webkit-overflow-scrolling : touch ;
14
+ scroll-behavior : smooth ;
15
+
16
+ // Fonts resets
17
+ -webkit-font-smoothing : antialiased ;
18
+ -moz-osx-font-smoothing : grayscale ;
19
+ text-rendering : auto ;
20
+ }
21
+
22
+ body {
23
+ font-family : $font-family-primary ;
24
+ font-size : $font-size-base ;
25
+ font-weight : normal ;
26
+ color : $color-text ;
27
+ background-color : $color-light ;
28
+ }
Original file line number Diff line number Diff line change 5
5
@import " ./fonts" ;
6
6
@import " ./variables-css" ;
7
7
@import " ./normalize" ;
8
+ @import " ./body" ;
8
9
@import " ./svg-icons" ;
9
10
@import " ./forms" ;
10
11
@import " ./links" ;
You can’t perform that action at this time.
0 commit comments