File tree Expand file tree Collapse file tree 4 files changed +35
-39
lines changed Expand file tree Collapse file tree 4 files changed +35
-39
lines changed Original file line number Diff line number Diff line change 176
176
--purple-35 : var (--purple-35-touchscreen );
177
177
--purple-30 : var (--purple-30-touchscreen );
178
178
--purple-20 : var (--purple-20-touchscreen );
179
+
180
+ /* font-family */
181
+ --font-family-main : 'Public Sans' ;
179
182
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ /* from createGlobalStyle */
2
+ * {
3
+ box-sizing : border-box;
4
+ margin : 0 ;
5
+ padding : 0 ;
6
+ font-family : var (--font-family-main ), 'DejaVu Sans' , sans-serif;
7
+ }
8
+
9
+ html ,
10
+ body {
11
+ width : 100% ;
12
+ height : 100% ;
13
+ color : var (--black-90 );
14
+ }
15
+
16
+ a {
17
+ text-decoration : none;
18
+ }
19
+
20
+ button {
21
+ border : none;
22
+ }
23
+
24
+ button : focus ,
25
+ button : active {
26
+ outline : 0 ;
27
+ }
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { I18nextProvider } from 'react-i18next'
4
4
import { Auth0Provider } from '@auth0/auth0-react'
5
5
6
6
import { App } from './App'
7
- import { GlobalStyle } from './atoms/GlobalStyle'
8
7
import { i18n } from './i18n'
9
8
import {
10
9
AUTH0_DOMAIN ,
@@ -14,6 +13,11 @@ import {
14
13
STAGING_AUTH0_CLIENT_ID ,
15
14
} from './resources/constants'
16
15
16
+ import '@fontsource/public-sans'
17
+ import '@fontsource/public-sans/600.css'
18
+ import '@fontsource/public-sans/700.css'
19
+ import './global.css'
20
+
17
21
const rootElement = document . getElementById ( 'root' )
18
22
19
23
const getClientId = ( ) : string => {
@@ -46,7 +50,6 @@ if (rootElement != null) {
46
50
redirect_uri : window . location . origin ,
47
51
} }
48
52
>
49
- < GlobalStyle />
50
53
< I18nextProvider i18n = { i18n } >
51
54
< App />
52
55
</ I18nextProvider >
You can’t perform that action at this time.
0 commit comments