FeaturePage.vue 445 B

1234567891011121314151617181920212223242526272829
  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. flex-direction: column;
  13. margin: 0 auto;
  14. max-width: 1152px;
  15. }
  16. .FeaturePage :deep(a) {
  17. font-weight: 500;
  18. color: var(--vp-c-brand);
  19. text-decoration-style: dotted;
  20. transition: color 0.25s;
  21. }
  22. .FeaturePage :deep(a:hover) {
  23. color: var(--vp-c-brand-dark);
  24. }
  25. </style>