FeaturePage.vue 420 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="FeaturePage">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <style scoped>
  7. .FeaturePage {
  8. line-height: 1.5;
  9. }
  10. .FeaturePage :deep(.container) {
  11. display: flex;
  12. margin: 0 auto;
  13. max-width: 1152px;
  14. }
  15. .FeaturePage :deep(a) {
  16. font-weight: 500;
  17. color: var(--vp-c-brand);
  18. text-decoration-style: dotted;
  19. transition: color 0.25s;
  20. }
  21. .FeaturePage :deep(a:hover) {
  22. color: var(--vp-c-brand-dark);
  23. }
  24. </style>