Profile.css 304 B

123456789101112131415161718192021
  1. .profile-container {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .profile-details {
  9. background-color: var(--accent-color);
  10. display: flex;
  11. flex-direction: column;
  12. justify-content: space-between;
  13. }
  14. .profile-detail {
  15. display: flex;
  16. flex-direction: column;
  17. }