JournalDetail.scss 785 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .journal_detail {
  2. display: flex;
  3. flex-direction: row;
  4. background-color: #fff;
  5. padding-left: 40px;
  6. padding-right: 40px;
  7. padding-bottom: 40px;
  8. padding-top: 40px;
  9. min-height: 100vh;
  10. }
  11. page
  12. html
  13. body{
  14. height: 100%;
  15. background-color: #fff;
  16. }
  17. .header_avatar {
  18. width: 74px;
  19. height: 74px;
  20. border-radius: 37px;
  21. margin-right: 24px;
  22. background-color: palegoldenrod;
  23. }
  24. .jounal_content {
  25. flex: 1;
  26. flex-direction: column;
  27. display: flex;
  28. }
  29. .journal_nickname {
  30. display: flex;
  31. font-size: 34px;
  32. line-height: 42px;
  33. font-weight: bold;
  34. color: #5C7099;
  35. font-weight: bold;
  36. }
  37. .img_container{
  38. display: flex;
  39. flex-direction: row;
  40. flex-wrap: wrap;
  41. margin-top: 12px;
  42. // margin-bottom: 16px;
  43. }