Search code examples
sasscompass-sass

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); }

Solution

  • As in CSS, simply declare none:

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