Remove default padding
This commit is contained in:
parent
7f8dfaa169
commit
21dbd59e93
2 changed files with 6 additions and 0 deletions
5
src/global.css
Normal file
5
src/global.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@ import ReactDOM from 'react-dom/client';
|
|||
import { BrowserRouter } from 'react-router-dom';
|
||||
import AppRouter from '@src/router/AppRouter';
|
||||
import { AppProvider } from '@src/context';
|
||||
import './global.css';
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||
<React.StrictMode>
|
||||
|
|
|
|||
Loading…
Reference in a new issue