Dashboard Page - Appointments:

- create separate dashboard components for doctor and patient
- add appointments to dashboard components
- add code to backend for appointments retrieval
This commit is contained in:
ElenitaMLG
2024-04-30 12:48:19 +03:00
parent 1ff7f51aa6
commit 7e38d60802
17 changed files with 665 additions and 30 deletions
+7 -3
View File
@@ -1,4 +1,4 @@
body, html {
body, html {
height: 100%;
width: 100%;
margin: 0;
@@ -12,11 +12,11 @@ body {
font-style: normal;
position: relative;
z-index: 0; /* Ensures the background is under the content */
overflow: scroll !important;
}
.background {
position: absolute;
position: fixed;
top: -5%;
left: -5%;
width: 110%;
@@ -68,4 +68,8 @@ body {
display: flex;
flex-direction: row; /* This will align the buttons side by side */
justify-content: center; /* Center the buttons within the container */
}
.modal-backdrop.show {
display: none !important;
}