Latest solutions
Responsive landing page using Styled components, React, Vite
#react#styled-components#viteSubmitted almost 3 years agoResponsive page using React, styled-components to develop a chart
#react#styled-components#viteSubmitted almost 3 years ago
Latest comments
- @aja26@jccaychop
I liked your solution. What I could recommend is to add a style reset to your style sheet, which will remove the default padding and margins. This will make your page not have unnecessary scroll.
:root { ..... your code }
- { margin: 0; box-sizing: border-box; padding: 0; }
body { ..... your code }
Marked as helpful