You’re welcome!
To import CSS into your post-purchase extension, you can use the import statement in your TypeScript file. Here’s an example of how you can import a CSS file in your index.tsx file:
import './styles.css';
You can then add your CSS styles to the styles.css file. Make sure to include the correct file path when importing the CSS file.
If this is not working for you, make sure that your CSS file is in the same directory as your index.tsx file, and that the file name and extension are correct. Additionally, you may need to configure your build process to include CSS files.
Let me know if you have any further questions!