Product list with Cart using React

Please log in to post a comment
Log in with GitHubCommunity feedback
- P@ttsoares
-
At modal of ´Order Confirmed' the text appear over other objects.
-
Normally the three break points defined in the challenges here are 375, 768 and 1440. Why you used that --breakpoint-xs: 425px ?
-
If your App.css is empty, why keep it ?
-
If you really like the Tailwind the way to customize styling is via the file tailwind.config.js. Like:
/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { screens: { sm: "375px", md: "960px", lg: "1440px", }, extend: { colors: { dark_blue: "hsl(240, 38%, 20%)", grayish_blue: "hsl(240, 18%, 77%)", }, }, plugins: [], };
-
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord