Skip to content

Commit

Permalink
fixes #978
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed May 24, 2016
1 parent bc92258 commit 69db85e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected function process_output( $output, $value ) {
}

// Take care of letter-spacing.
if ( isset( $value['letter-spacing'] ) && ! empty( $value['letter-spacing'] ) ) {
if ( isset( $value['letter-spacing'] ) && ( ! empty( $value['letter-spacing'] ) || '0' == $value['letter-spacing'] ) ) {
$this->styles[ $output['media_query'] ][ $output['element'] ]['letter-spacing'] = $value['letter-spacing'];
}

Expand Down

0 comments on commit 69db85e

Please sign in to comment.