mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			864 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			864 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<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-light-gray;
 | 
						|
  opacity: 0.9;
 | 
						|
  display: flex;
 | 
						|
  filter: grayscale(1);
 | 
						|
  font-size: $font-size-small;
 | 
						|
  justify-content: center;
 | 
						|
  text-align: center;
 | 
						|
  text-decoration: none;
 | 
						|
  padding: $space-normal 0 $space-slab;
 | 
						|
  cursor: pointer;
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    filter: grayscale(0);
 | 
						|
    opacity: 1;
 | 
						|
    color: $color-gray;
 | 
						|
  }
 | 
						|
 | 
						|
  img {
 | 
						|
    margin-right: $space-smaller;
 | 
						|
    max-width: $space-slab;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |