Skip to content
Advertisement

I can’t import emotion js style with dynamic variable

I have a webpage that looks like this:
enter image description here

This is my _app.tsx file:

JavaScript

And this is shared/styles.js:

JavaScript

Notice that blueOnBlack is an attempt to put the Futuristic Sci-Fi UI Web Framework style into its own importable variable.

The problem is that when I put blueOnBlack into the _app.tsx as the style for the Futuristic Sci-Fi UI Web Framework div tag, it fails.

This is _app.tsx with blueOnBlack imported:

JavaScript

The resulting webpage looks like this,
enter image description here

It’s almost right… but it dropped the background color. Why is it different?

Advertisement

Answer

I changed shared/styles.js from:

JavaScript

to this:

JavaScript

And then it ran and gave me the correct styling including the black background on the text. Notice that I’m using styled.div instead of css

Advertisement