2
0
mirror of https://github.com/frappe/books.git synced 2025-02-11 16:39:25 +00:00
books/src/components/Button.vue

11 lines
237 B
Vue
Raw Normal View History

2019-10-04 23:51:26 +05:30
<template>
<button class="text-white text-sm px-4 py-2 focus:outline-none rounded-lg">
<slot></slot>
</button>
</template>
<style scoped>
button {
background-image: linear-gradient(180deg, #4AC3F8 0%, #2490EF 100%);
}
</style>