Use link button for App submit

This commit is contained in:
Sam Carlton 2020-09-19 22:11:49 -05:00
parent 13b6ef9589
commit 226c3068b4

View file

@ -60,11 +60,10 @@
<div class="flex items-center"> <div class="flex items-center">
<div class="flex-shrink-0"> <div class="flex-shrink-0">
<span class="rounded-md shadow-sm"> <span class="rounded-md shadow-sm">
<a <LinkButton
role="button"
href="https://github.com/ThatGuySam/doesitarm/issues" href="https://github.com/ThatGuySam/doesitarm/issues"
class="relative inline-flex items-center px-4 py-2 border border-transparent text-sm leading-5 font-medium rounded-md text-white bg-indigo-500 hover:bg-indigo-400 focus:outline-none focus:shadow-outline-indigo focus:border-indigo-600 active:bg-indigo-600 transition duration-150 ease-in-out"> class="relative inline-flex items-center border-indigo-500"
<!-- Heroicon name: plus --> >
<svg <svg
class="-ml-1 mr-2 h-5 w-5" class="-ml-1 mr-2 h-5 w-5"
viewBox="0 0 20 20" viewBox="0 0 20 20"
@ -75,7 +74,8 @@
clip-rule="evenodd" /> clip-rule="evenodd" />
</svg> </svg>
<span>Submit App</span> <span>Submit App</span>
</a> </LinkButton>
</span> </span>
</div> </div>
</div> </div>
@ -112,8 +112,12 @@
</template> </template>
<script> <script>
import LinkButton from '~/components/link-button.vue'
export default { export default {
components: {
LinkButton
},
props: { props: {
items: { items: {
type: Array, type: Array,