Skip to content

Commit 7bf9a4f

Browse files
Created a css file and applied css styling
1 parent 3093814 commit 7bf9a4f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

web/src/App.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.mainDiv {
2+
display: grid;
3+
grid-template-columns: 1fr 1fr;
4+
gap: 40px;
5+
}

web/src/App.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { useState } from 'react';
22
import TaskList from './components/domains/task/TaskList/TaskList';
33
import NewTaskForm from './components/domains/New-Task/new-task.jsx';
44
import { Routes, Route, Link } from 'react-router';
5+
import './App.css';
56

67
function App() {
78
const [TaskListInfo, setTaskListInfo] = useState([
@@ -64,7 +65,7 @@ function App() {
6465

6566
return (
6667
<>
67-
<div className={styles.maindiv}>
68+
<div className="mainDiv">
6869
<div>
6970
<div>
7071
<img src="/Migracode Logo 1.png" alt="Migracode-logo" />

0 commit comments

Comments
 (0)