0.2.3 • Published 7 years ago

postcss-safe-curly-braces v0.2.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

PostCSS Safe Curly Braces Build Status

PostCSS plugin that adds a white space between closing curly braces.

This is useful when inlining css into a Handlebars or a Vue.js template, as back-to-back curly braces can break the template engine.

@media(hover:hover){.foo{display:none}}
@media(hover:hover){.foo{display:none} }

Usage

postcss([ require('postcss-safe-curly-braces') ])

See PostCSS docs for examples for your environment.