Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
824 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <div class="footer">
  3. <div class="left">
  4. &copy; 2021 SearchAndDisplace
  5. </div>
  6. <div class="right">
  7. <span>
  8. <a href="https://git.law/newroco/searchanddisplace-core/issues">Issues</a>
  9. </span>
  10. <span>|</span>
  11. <span>
  12. <a href="https://forum.searchanddisplace.com/">Forum</a>
  13. </span>
  14. </div>
  15. </div>
  16. </template>
  17. <script lang="ts">
  18. import Vue from 'vue';
  19. import Component from 'vue-class-component';
  20. @Component
  21. export default class AppFooter extends Vue {
  22. //
  23. }
  24. </script>
  25. <style lang="sass" scoped>
  26. .right
  27. span, a
  28. font-size: 1.2em
  29. color: white !important
  30. text-decoration: none
  31. margin-left: 0.3rem
  32. margin-right: 0.3rem
  33. </style>