Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated colors and fixed nav bar #350

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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