12345678910111213141516171819202122232425262728 |
- <template>
- <div class="follow-empty-container flex-col flex-aic">
- <h3>没有任何内容</h3>
- <p>当关注用户发布内容时,在此显示动态</p>
- </div>
- </template>
- <style lang="scss" scoped>
- .follow-empty-container {
- h3 {
- font-size: 34px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #BCBCBC;
- line-height: 48px;
- }
- p {
- margin: 0;
- font-size: 18px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #888888;
- line-height: 25px;
- }
- }
- </style>
|