Skip to content

Commit

Permalink
added package json
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiopeelaurie committed Dec 19, 2023
1 parent 4c5490c commit f4767ae
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
24 changes: 12 additions & 12 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions frontend/src/components/Dashboards/title-dashboard.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
.title-container {
width: 80%;
width: 70%;
margin-left: 25px;
display: flex;
justify-items: center;
justify-content: space-between;
}

.title-dash {
font-size: 20px;
color: var(--texte-default);
font-weight: 500;
font-weight: 400;
}
5 changes: 2 additions & 3 deletions frontend/src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import { createBrowserRouter, RouterProvider } from "react-router-dom";
// eslint-disable-next-line import/no-unresolved, import/no-extraneous-dependencies
import "mdb-react-ui-kit/dist/css/mdb.min.css";
// eslint-disable-next-line import/no-extraneous-dependencies
import "@fortawesome/fontawesome-free/css/all.min.css";
import "mdb-react-ui-kit/dist/css/mdb.min.css";

// Import des composants pour les routes.
import App from "./App";
import SignIn from "./pages/Connexion/SignIn";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Dashboard/Dashboard1.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import TitleDashboard from "../../components/Dashboards/TitleDashboard";
function TitleDashboard1() {
return (
<div>
<TitleDashboard />;
<TitleDashboard />
</div>
);
}
Expand Down

0 comments on commit f4767ae

Please sign in to comment.