Skip to content

Commit

Permalink
Changed global.css to index.css and updated variables, also changed t…
Browse files Browse the repository at this point in the history
…he main.jsx file
  • Loading branch information
sarross88 committed Dec 4, 2024
1 parent 6db7eed commit 7682747
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 207 deletions.
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Binary file added public/favicon.ico
Binary file not shown.
1 change: 0 additions & 1 deletion public/vite.svg

This file was deleted.

193 changes: 0 additions & 193 deletions src/global.css

This file was deleted.

1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ html {
--color-green-light: #bec5ad;
--color-blue-dark: #28535c;
--color-blue-light: #356a82;
--color-alert: #a25646;

/* OTHER colors */
--primary-50: #e0fcff;
Expand Down
6 changes: 3 additions & 3 deletions src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import { ChakraProvider, defaultSystem } from '@chakra-ui/react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App.jsx';
import { ChakraProvider } from '@chakra-ui/react';
import './index.css';

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<ChakraProvider>
<ChakraProvider value={defaultSystem}>
<App />
</ChakraProvider>
</React.StrictMode>
Expand Down

0 comments on commit 7682747

Please sign in to comment.