blob: b32fabc129f61e054e38721a97b0f201783e6019 [file] [log] [blame]
<template>
<div class="footer">
<div class="links">
<a href="https://github.com/apache/cloudstack" target="_blank">
<a-icon type="github"/>
</a>
<a href="https://twitter.com/rhtyd">rhtyd</a>
</div>
</div>
</template>
<script>
export default {
name: 'LayoutFooter',
data () {
return {
}
}
}
</script>
<style lang="less" scoped>
.footer {
padding: 0 16px;
margin: 48px 0 24px;
text-align: center;
.links {
margin-bottom: 8px;
a {
color: rgba(0, 0, 0, .45);
&:hover {
color: rgba(0, 0, 0, .65);
}
&:not(:last-child) {
margin-right: 40px;
}
}
}
.copyright {
color: rgba(0, 0, 0, .45);
font-size: 14px;
}
}
</style>