Here is an image that will help illustrate the issue:
https://i.stack.imgur.com/VA7fw.png
If you want to check out the code sandbox for this problem, you can visit: https://codesandbox.io/s/annoying-stylesheet-2gpejc?file=/public/index.html
I am currently working on a React app within a non-react app, and their styles are conflicting with my React app's styles.
Is there a way to override only the bootstrap-enterprise.css
stylesheet for the area of my React app without affecting the styling of the rest of the page (the top app bar belongs to them)?
Additionally, I tried using the following CSS snippet initially, but it didn't work when I attempted to override the Mui Textfield styling component. I have updated the codesandbox with the exact scenario for reference.
.App {
all: revert;
}