I am encountering an overflow issue with the styles sheet I'm using on mobile and tablet views, but it works fine on desktop view. Can anyone provide a solution to this problem? I am developing a ReactJS web app hosted on Firebase. When I include fewer tech languages, there are no errors displayed. However, adding more languages causes an overflow issue that makes the content horizontally scrollable.
const AboutPageStyles = styled.div`
// Styles defined here...
`;
<div className="about__info__item">
<h1 className="about__info__heading">My Skills</h1>
<AboutInfoItem
title="FrontEnd"
items={[
'HTML',
'CSS',
'JavaScript',
'C#',
'ReactJS',
'Blazor',
'MAUI',
'XAML',
]}
/>
</div>