-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
38 lines (34 loc) · 804 Bytes
/
styles.js
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
32
33
34
35
36
37
38
import { createGlobalStyle } from "styled-components";
export default createGlobalStyle`
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Ruluko-Regular;
background-color: #f8f8f8;
}
@font-face {
font-family: 'Ruluko-Regular';
src: url('/Ruluko-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'FiraSans-Regular';
src: url('/FiraSans-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'FiraSans-Light';
src: url('/FiraSans-Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
`;