william-hu-codes / electronic-medical-record

Fully functional electronic medical record with user authentication using Google OAuth. Integrates OpenAI to automatically generate discharge summaries by parsing through the patient's existing progress notes.
MIT License
0 stars 3 forks source link

Update providers + cleaning up css by implementing generic css classes to be reused #30

Closed william-hu-codes closed 1 year ago

william-hu-codes commented 1 year ago

cleaned up update user functionality by cleaning up code. cleaned up css by implementing more generic css classes that can be used to style multiple elements throughout the application. added css classes: .flex-left-container { display: inline-flex; justify-content: flex-start; align-items: center; } .avatar-image { border-radius: 50%; height: 60px; } .flex-center-container { display: flex; justify-content: center; align-items: center; }

removed css classes

.user-avatar img {
  border-radius: 50%;
  height: 60px;
} */
/* .user-avatar-for-patient img {
  border-radius: 50%;
  height: 60px;
}

`/* .user-avatar-for-patient { display: flex; justify-content: flex-start; align-items: center; display: inline

} */`

/* .user-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
} */

all "removed" classes were simply commented out in case they are still needed.