I am facing this issue because I am receiving stylized text from "Portable Text to React". However, the global style in my index.css file includes a css reset that eliminates all default styling applied to elements of the portable text.
Is there a way to exclude the reset.css from this particular react component or troubleshoot this in a different manner? My attempts at adding .unset * {all: unset}
or .unset * {all: unset}
classes have not resulted in the desired behavior. Instead of reapplying styling to h1s, spans, lists, etc., it removes all styling completely.