Remove default padding

This commit is contained in:
Matt DiMeglio 2025-05-20 15:58:37 -04:00
parent 7f8dfaa169
commit 21dbd59e93
2 changed files with 6 additions and 0 deletions

5
src/global.css Normal file
View file

@ -0,0 +1,5 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

View file

@ -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>