23 lines
370 B
Vue
23 lines
370 B
Vue
<template lang="pug">
|
|
button.icon-plus.button-plus.text-xs.pt-1
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "ButtonPlus",
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
.button-plus
|
|
outline: none
|
|
border: none
|
|
cursor: pointer
|
|
width: 24px
|
|
height: 24px
|
|
max-height: 24px
|
|
color: #4772F2
|
|
background-color: rgba(65, 105, 225, 0.25)
|
|
border-radius: 50%
|
|
</style>
|