Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unset compass single-text-shadow()

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

e.g. i want to set the text shadow globally for all header elements and then eliminate it for certain cases.

h2 { @include single-text-shadow($blue, 1px, 1px, 0); }
like image 881
chrisjlee Avatar asked Dec 12 '22 02:12

chrisjlee


1 Answers

As in CSS, simply declare none:

.specific h2 { @include single-text-shadow(none); }
like image 61
piouPiouM Avatar answered Dec 28 '22 06:12

piouPiouM