I'm using Intercom in my React.js PWA,
but the tool's default styles don't account for 'safe-area's, causing issues on devices with notches, such as the iPhone. Is there a solution for this?
//
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
Adding the style to the “body” element would solve the problem, but custom styles aren’t available.