You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
576 B
Vue
34 lines
576 B
Vue
<template>
|
|
<button class="btn">
|
|
<div class="btnText">{{text}}</div>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "textbtn",
|
|
props:{
|
|
text: String
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.btn{
|
|
cursor: pointer;
|
|
border: none;
|
|
height: 2.5rem;
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
background-color: #00BCD4;
|
|
box-shadow: 3px 3px 10px #222;
|
|
border-radius: 1.25rem;
|
|
margin: 1rem;
|
|
}
|
|
.btnText {
|
|
position: relative;
|
|
font-size: 1.4rem;
|
|
color:#fff;
|
|
font-family:Arial, "lucida console", sans-serif;
|
|
}
|
|
</style> |