fixed css

This commit is contained in:
2023-12-03 23:30:30 +01:00
parent f05c4517cd
commit d0ecf1aec4
10 changed files with 178 additions and 36 deletions

View File

@ -1,7 +1,7 @@
/* ==========================================================================
MIXINS
========================================================================== */
@use "sass:math";
%tab-focus {
/* Default*/
outline: thin dotted $focus-color;
@ -65,7 +65,7 @@
$green: green($color);
$blue: blue($color);
$yiq: (($red*299)+($green*587)+($blue*114))/1000;
$yiq: math.div((($red*299)+($green*587)+($blue*114)), 1000);
@if $yiq-debug { @debug $yiq, $threshold; }