Personal Dashboard

User.scss 730B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .User {
  2. display: flex;
  3. flex-direction: row;
  4. align-content: flex-start;
  5. justify-content: flex-start;
  6. .profile-pic {
  7. width: 200px;
  8. height: 200px;
  9. }
  10. .profile-info {
  11. display: flex;
  12. margin-left: 50px;
  13. flex-direction: column;
  14. justify-content: space-around;
  15. h3 {
  16. margin-bottom: 30px;
  17. }
  18. .social-columns {
  19. display: flex;
  20. flex-wrap: wrap;
  21. & > h4 {
  22. margin: 20px;
  23. }
  24. .fa {
  25. margin-right: 20px;
  26. width: 20px;
  27. }
  28. }
  29. .pt-label > input.pt-input {
  30. margin-left: 20px;
  31. }
  32. }
  33. }