Skip to content
Snippets Groups Projects
Verified Commit 452da482 authored by Defendi Alberto's avatar Defendi Alberto
Browse files

Add css normalization for multibrowser support

parent aa194274
No related branches found
No related tags found
2 merge requests!15Clean email validation,!13Basic form api and implement cookie entrypoint
Pipeline #11607 failed
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
import React from 'react';
import ReactDOM from 'react-dom';
import { IntlProvider } from 'react-intl';
import CssBaseline from '@material-ui/core/CssBaseline';
import MESSAGES_EN from './intl/en.json';
import './index.css';
import { App } from './App';
ReactDOM.render(
<React.StrictMode>
<IntlProvider locale="en" messages={MESSAGES_EN}>
<CssBaseline />
<App />
</IntlProvider>
,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment