Khan / aphrodite

Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation
5.34k stars 188 forks source link

Doing a descendant style with aphrodite #384

Closed joliejodell closed 5 years ago

joliejodell commented 5 years ago

This css style works in normal css:

.bm-burger-button button:focus { outline: none; }

How do I do this in aphrodite?

I tried:

['bmBurgerButton button:focus'] : { outline: 'none' },

but that doesn't work.

Thanks!!