mirror of
				https://github.com/andrewgioia/keyrune.git
				synced 2025-11-03 23:50:45 +00:00 
			
		
		
		
	Merges branch fix-division-deprecation by @nogweii (https://github.com/nogweii/keyrune) into nogweii-fix-division-deprecation from PR #221
				
					
				
			This commit is contained in:
		
						commit
						ba78665d57
					
				@ -1,3 +1,5 @@
 | 
			
		||||
@use 'sass:math';
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Sizes */
 | 
			
		||||
@each $class, $size in $keyrune_sizes {
 | 
			
		||||
@ -9,7 +11,7 @@
 | 
			
		||||
/**
 | 
			
		||||
 * Fixed width */
 | 
			
		||||
.#{$keyrune_prefix}.#{$keyrune_prefix}-fw {
 | 
			
		||||
    width: calc(18em / #{$keyrune_font_size / ($keyrune_font_size * 0 + 1)});
 | 
			
		||||
    width: calc(18em / #{math.div($keyrune_font_size, $keyrune_font_size * 0 + 1)});
 | 
			
		||||
    text-align: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -108,4 +110,4 @@
 | 
			
		||||
        color: #000;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -10,7 +10,7 @@ $keyrune_font_variant: normal !default;
 | 
			
		||||
$keyrune_font_weight: normal !default;
 | 
			
		||||
$keyrune_font_size:  14px !default;
 | 
			
		||||
$keyrune_font_face: 'Keyrune' !default;
 | 
			
		||||
$keyrune_font: $keyrune_font_style $keyrune_font_variant $keyrune_font_weight $keyrune_font_size/1 $keyrune_font_face !default;
 | 
			
		||||
$keyrune_font: $keyrune_font_style $keyrune_font_variant $keyrune_font_weight calc($keyrune_font_size/1) $keyrune_font_face !default;
 | 
			
		||||
$keyrune_prefix: 'ss' !default;
 | 
			
		||||
$keyrune_default_content: "\e684" !default;
 | 
			
		||||
$keyrune_background_clip: text !default;
 | 
			
		||||
@ -492,4 +492,4 @@ $keyrune_sets: (
 | 
			
		||||
// display glyph correctly
 | 
			
		||||
@function ss-content($glyph) {
 | 
			
		||||
    @return unquote("\"#{$glyph}\"");
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user