[Bug] Scroll conversation to bottom on load (#205)

This commit is contained in:
Pranav Raj S 2019-11-12 09:46:30 +05:30 committed by GitHub
parent e37c04a81f
commit 6d8b6d4769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 53 additions and 12 deletions

View file

@ -0,0 +1,37 @@
<template>
<a
class="branding"
href="https://www.chatwoot.com?utm_source=widget_branding"
rel="noreferrer noopener nofollow"
target="_blank"
>
<img src="~widget/assets/images/logo.svg" />
<span>Powered by Chatwoot</span>
</a>
</template>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
@import '~widget/assets/scss/variables.scss';
.branding {
align-items: center;
color: $color-gray;
display: flex;
filter: grayscale(1);
font-size: $font-size-default;
justify-content: center;
padding: $space-one;
text-align: center;
text-decoration: none;
&:hover {
filter: grayscale(0);
}
img {
margin-right: $space-small;
max-width: $space-two;
}
}
</style>