Personal Dashboard

User.scss 695B

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