Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 3eea39f

Browse files
committed
Merge branch 'feature/addUser' of github.com:FileFighter/WebApp into feature/addUser
2 parents 29fbf26 + cee204b commit 3eea39f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

webapp_frontend/src/background/api/registration.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export const registerNewUser = (username: string, password: string, passwordConf
1616
confirmationPassword: passwordConfirmation
1717
}
1818

19+
1920
return Axios.post(hostname + userPath + '/register', newUser)
2021
.then((data: AxiosResponse<object>) => {
2122
console.log(data)

webapp_frontend/src/style/custom.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//read this: https://getbootstrap.com/docs/4.1/getting-started/theming
22

33
// Override default variables before the import (see node_modules/bootstrap/scss/_variables.scss for all)
4-
$body-bg: #000;
4+
$body-bg: #2a313d;;
55
$body-color: #FFF;
66
$blue: #1a4965;
77

@@ -20,9 +20,11 @@ $blue: #1a4965;
2020
@import "~bootstrap/scss/code";
2121
@import "~bootstrap/scss/grid";
2222
@import "~bootstrap/scss/buttons";
23+
@import "~bootstrap/scss/close";
2324
@import "~bootstrap/scss/tables";
2425
@import "~bootstrap/scss/utilities";
2526
@import "~bootstrap/scss/forms";
2627
@import "~bootstrap/scss/spinners";
2728
@import "~bootstrap/scss/alert";
2829

30+

0 commit comments

Comments
 (0)