Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/react-app/src/components/LoginForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function LoginForm(){
message: 'Please enter a Username Name'
}
})}/>
<input type="text" name="password" placeholder="Password" {...register("password", {
<input type="password" name="password" placeholder="Password" {...register("password", {
required:{
value: true,
message: 'Please set a Password'
Expand Down
6 changes: 6 additions & 0 deletions frontend/react-app/src/css/TaskList.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ table{

table td, table th {
border: 1px solid grey; /* Keeps inner borders */
min-width: 7em;
}

th,td{
padding:10px;
background-color: white;
font-size: 1em;
}
thead th{
/* background-color: #437676; */
Expand Down Expand Up @@ -61,6 +63,10 @@ thead th{
.selector {
height: 43px;
}

#searchThis{
min-width: 100px;
}

.search-input {
flex: 1;
Expand Down
2 changes: 1 addition & 1 deletion frontend/react-app/src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Home = () => {
accessor: "team"
},
{
Header: "DeadLine",
Header: "Deadline",
accessor: 'dueDate'
}
]
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

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