mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-03 20:07:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			320 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			320 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@mixin badge-variant($bg) {
 | 
						|
  color: color-yiq($bg);
 | 
						|
  background-color: $bg;
 | 
						|
 | 
						|
  @at-root a#{&} {
 | 
						|
    @include hover-focus() {
 | 
						|
      color: color-yiq($bg);
 | 
						|
      background-color: darken($bg, 10%);
 | 
						|
    }
 | 
						|
 | 
						|
    &:focus,
 | 
						|
    &.focus {
 | 
						|
      outline: 0;
 | 
						|
      box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |