Closed 3ein39 closed 11 months ago
Name | Link |
---|---|
Latest commit | 7676fd7f26de810edbd8dfc08d55c3c2d43eea19 |
Latest deploy log | https://app.netlify.com/sites/activecourses/deploys/6575a30ed277270008f42b05 |
Deploy Preview | https://deploy-preview-6--activecourses.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Hello Aly, Feel free to take a look and let me know if everything aligns with the expected changes. Thanks again for your collaboration!
Done
This pull request introduces changes to the
ContributorCard
component to make it responsive using the styled-components library.Changes include:
display: flex;
on small screens to stack the image and text vertically.display: flex;
on larger screens to align the image and text horizontally.ImageContainer
div and the image within it to take up 100% of the width of their parent element on small screens, and have a fixed size of 150px on larger screens.Card
andImageContainer
components with media queries for responsive design.These changes ensure that the
ContributorCard
component adapts to different screen sizes, improving the overall user experience on both small and large screens. The use of styled-components allows for more modular and reusable CSS in JS.