Feast 2.0!
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
672 B

  1. <template>
  2. <div id="header">
  3. <div>
  4. <a href="https://classic.feast.crux.sexy">Old version</a>
  5. </div>
  6. <div>
  7. <a href="https://discord.gg/vqcKVV6"><i class="fab fa-discord" /></a>
  8. </div>
  9. <div>Version: {{version}}</div>
  10. </div>
  11. </template>
  12. <script lang="ts">
  13. import { Component, Vue, Prop } from 'vue-property-decorator'
  14. @Component({})
  15. export default class Header extends Vue {
  16. @Prop() version!: string
  17. }
  18. </script>
  19. <style scoped>
  20. #header {
  21. flex: 0 1;
  22. width: 100%;
  23. background: #222;
  24. top: 0%;
  25. display: flex;
  26. justify-content: space-evenly;
  27. align-items: center;
  28. }
  29. a {
  30. color: #66b
  31. }
  32. #header i {
  33. font-size: 7vh;
  34. }
  35. </style>