FloowEmpty.vue 542 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="follow-empty-container flex-col flex-aic">
  3. <h3>没有任何内容</h3>
  4. <p>当关注用户发布内容时,在此显示动态</p>
  5. </div>
  6. </template>
  7. <style lang="scss" scoped>
  8. .follow-empty-container {
  9. h3 {
  10. font-size: 34px;
  11. font-family: PingFangSC, PingFang SC;
  12. font-weight: 500;
  13. color: #BCBCBC;
  14. line-height: 48px;
  15. }
  16. p {
  17. margin: 0;
  18. font-size: 18px;
  19. font-family: PingFangSC, PingFang SC;
  20. font-weight: 400;
  21. color: #888888;
  22. line-height: 25px;
  23. }
  24. }
  25. </style>