Skip to content
Open
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
5 changes: 5 additions & 0 deletions Frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ body {
height: 100%;
display: grid;
grid-template-columns: 1fr 8fr;
position: absolute;
left: 10%;
}

.grid-container:nth-child(2) {
Expand All @@ -48,6 +50,8 @@ body {
border-right: solid;
background-color: white;
opacity: 60%;
position: fixed;
left: 10px;
}

.navList li {
Expand Down Expand Up @@ -79,6 +83,7 @@ body {
font-size: 2rem;
list-style: none;
text-align: left;
position: fixed;
}

.navList a,
Expand Down
2 changes: 1 addition & 1 deletion Frontend/src/util/RequestService.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
import axios from 'axios';

const backendUrl = 'http://localhost:8080';
const backendUrl = 'http://192.168.99.100:8080';

// This is for use with our Java API
function generateApiInstance() {
Expand Down