notice.vue 616 B

12345678910111213141516171819202122232425262728293031323334
  1. <!-- @format -->
  2. <script lang="ts" setup></script>
  3. <template>
  4. <div>
  5. <div
  6. class="py-18px px-24px bg-#FAFAFA b-rd-10px text-#000 text-20px fw-500 mb-20px"
  7. >
  8. Notice
  9. </div>
  10. <Business-account-notice />
  11. </div>
  12. </template>
  13. <style lang="less" scoped>
  14. .favorite-tabs {
  15. background-color: #fafafa;
  16. border-radius: 10px;
  17. padding: 20px;
  18. padding-top: 0px;
  19. ::v-deep(.el-tabs__header) {
  20. .el-tabs__item {
  21. color: #333;
  22. &.is-active {
  23. color: #c58c64 !important;
  24. }
  25. }
  26. .el-tabs__active-bar {
  27. background-color: #c58c64 !important;
  28. }
  29. }
  30. }
  31. </style>