This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-03-17_http-01-starting.../src/components/UI/BaseButton.vue

22 lines
320 B
Vue

<template>
<button>
<slot></slot>
</button>
</template>
<style scoped>
button {
font: inherit;
border: 1px solid #360032;
background-color: #360032;
color: white;
padding: 0.5rem 2rem;
cursor: pointer;
}
button:hover,
button:active {
background-color: #5c0556;
border-color: #5c0556;
}
</style>