Unset compass single-text-shadow ()

Is there a way to disable or remove the text-shadow effect of the compass function?

eg. I want to set the shadow of the text globally for all title elements, and then eliminate it for certain cases.

h2 { @include single-text-shadow($blue, 1px, 1px, 0); } 
+4
source share
1 answer

As in CSS, just declare none :

 .specific h2 { @include single-text-shadow(none); } 
+13
source

Source: https://habr.com/ru/post/1413874/


All Articles