You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
548 B

6 years ago
<template>
<div class="share-buttons">
<twitter-button class="button-social--twitter" btnText="Twitter" pageUrl hasIcon></twitter-button>
6 years ago
</div>
</template>
<script>
import TwitterButton from "./components/TwitterButton";
6 years ago
export default {
name: "app-share-buttons",
6 years ago
components: {
TwitterButton
6 years ago
}
};
6 years ago
</script>
<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
6 years ago
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>