Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
531b2c5
Change the bar menu and move the search and exit buttons to the navig…
grrrance Apr 5, 2023
8bde29b
Returned ProfileEditComponent
lastdesire Apr 14, 2023
9b0cdcb
Updated create-record.component.js
lastdesire Apr 14, 2023
273adfd
Adapt the homepage
grrrance Apr 17, 2023
dd023d8
Adapt the forum page
grrrance Apr 25, 2023
f951875
Pull up the changes
grrrance Apr 25, 2023
a68990e
Updated records with ability to search for doctors
lastdesire Apr 28, 2023
8f05b8b
Uploaded notifications for users
lastdesire Apr 30, 2023
f6afdd1
Cleaning
lastdesire May 10, 2023
f4ba9ae
design homepage and adapt it
grrrance May 18, 2023
fd3ae79
adapt the search page
grrrance May 23, 2023
feb2f05
Uploaded NotificationServiceTest
lastdesire May 24, 2023
ac21978
Cleaning in NotificationServiceTest
lastdesire May 24, 2023
eebd8ff
Added test for user without notifications in NotificationServiceTest
lastdesire May 24, 2023
4a2b20f
Uploaded some useful methods in NotificationService and added test
lastdesire May 25, 2023
b858738
Merge branch 'develop-new' into develop-new-notifications
lastdesire May 25, 2023
f6866b2
Cleaning
lastdesire May 25, 2023
2e21b3a
Update changes
grrrance May 26, 2023
ba1f0de
Add cosmetic changes
grrrance May 26, 2023
8c75865
Add cosmetic changes for the text
grrrance May 26, 2023
17a965f
Fix an unnecessary merge change
grrrance May 26, 2023
17a1c6c
Remove the second text
grrrance May 29, 2023
73fc9d7
Add adaptation to other pages
grrrance Jun 2, 2023
c2990bf
Update changes
grrrance Jun 2, 2023
6b90509
Adapt notification and some bug fixes
grrrance Jun 2, 2023
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
66,816 changes: 33,408 additions & 33,408 deletions med-web-app-front/package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions med-web-app-front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"dependencies": {
"@emotion/styled": "^11.8.1",
"@fontsource/unbounded": "^4.5.1",
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/styles": "^4.11.5",
Expand All @@ -14,15 +15,18 @@
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"animate.css": "^4.1.1",
"axios": "^0.21.3",
"bootstrap": "^4.6.0",
"dcmjs": "^0.18.6",
"font-awesome": "^4.7.0",
"fontsource-titan-one": "^4.0.0",
"js-file-download": "^0.4.12",
"net": "^1.0.2",
"react": "^17.0.2",
"react-bootstrap": "^2.4.0",
"react-dom": "^17.0.2",
"react-on-screen": "^2.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"react-select": "^4.3.0",
Expand Down
3 changes: 3 additions & 0 deletions med-web-app-front/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Unbounded&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
Expand Down
32 changes: 32 additions & 0 deletions med-web-app-front/src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@



label {
display: block;
margin-top: 10px;
Expand Down Expand Up @@ -142,3 +145,32 @@ label {
background-color: #ffffff;
color: #000000;
}

.animated-gradient-text {
background-image: linear-gradient(-225deg, #2575fc 0%, #7918F2 48%, #4801FF 100%);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
display: inline-block;
}

@keyframes textclip {
to {
background-position: 200% center;
}
}



.gradient-text{
background-image: linear-gradient(to right, #000000 0%, #434343 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
max-width: max-content;
}
Loading