InstallOptionsSection.vue 600 B

12345678910111213141516171819202122232425262728293031
  1. <script lang="ts"></script>
  2. <template>
  3. <form class="InstallForm" id="form">
  4. <div class="InstallOptionsSection">
  5. <slot name="list" />
  6. </div>
  7. <cite
  8. >Based on: <a href="https://github.com/gabizz/hestiacp-scriptline-generator">@gabizz</a> and
  9. <a href="https://github.com/turbopixel/HestiaCP-Command-Creator">@turbopixel</a></cite
  10. >
  11. </form>
  12. </template>
  13. <style scoped>
  14. .InstallForm {
  15. margin: 0.55em 0;
  16. padding: 0 1em;
  17. line-height: 1.5;
  18. }
  19. cite {
  20. font-size: small;
  21. margin: 0.55em 0;
  22. display: block;
  23. text-align: center;
  24. & a {
  25. color: var(--vp-c-txt-1) !important;
  26. }
  27. }
  28. </style>