From 987353f225b346ab4974e8f36334e9f03078e014 Mon Sep 17 00:00:00 2001 From: Rahaf Date: Sun, 25 Jan 2026 10:22:09 +0300 Subject: [PATCH] Edit responsive card in About us --- src/Components/Sections/About/About.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Components/Sections/About/About.jsx b/src/Components/Sections/About/About.jsx index c2934eb..0b10ce1 100644 --- a/src/Components/Sections/About/About.jsx +++ b/src/Components/Sections/About/About.jsx @@ -284,6 +284,12 @@ import { useTranslation } from "react-i18next"; padding: 12px 20px; position: relative; color: ${props => props.$theme === 'dark' ? '#F5EEE6' : '#131313'}; + + overflow: hidden; + + @media (max-width: 768px) { + overflow-y: auto; + } `; const CloseButton = styled(motion.button)`