Latest solutions
Latest comments
- @ZolfikaarSubmitted 10 months ago@ZolfikaarPosted 10 months ago
I added the following: #1: I added a confirm modal for changing invoice status ✅ #2: Clicking outside the modals will close the modal ✅ #3: I added a rate limiter to prevent generating more than 5 draft invoices per minute ✅
0 - @Ali-NashSubmitted about 1 year ago@ZolfikaarPosted about 1 year ago
- You can use padding for content div like so: padding: 50px 0 40px 0;
- You don't need to set the height for the content div, it will take the height by its content already unless you have limited space so you can use max-width to ensure that the content won't take more space than you want to.
- For colors, you can use CSS variables especially if you have a complex project that uses the variable value on different things (e.g primary color) like so: At the top of your CSS sheet define a root selector :root{ --primary-clr: hsl(75, 94%, 57%); --gray-clr: var(--Grey); }
.content h2 { color: var(--primary-clr); } by that way, if you have say 20 elements that use this (--primary-clr) value, and for any reason you want to change it you can do so from one place in the root selector.
- For the hover effect on links buttons you can add this: .content ul li:hover { background-color: var(--primary-clr); cursor: pointer; } .content ul li:hover a{ color: var(--gray-clr); }
0 - @Lakshmi-000Submitted over 1 year ago@ZolfikaarPosted over 1 year ago
It's not working, if it's a vue or react project, you need to run build command in the project folder so that GitHub can find your project's compiled files.
this link may help you.
0 - @ZolfikaarSubmitted almost 2 years ago@ZolfikaarPosted almost 2 years ago
I have a major issue with importing/loading images, in the local host they work fine, but the problem appeared when deploying it to GitHub pages, the images on the home page are loaded but not the other pages, so any help would be appreciated
0 - @FETYagencySubmitted almost 2 years ago@ZolfikaarPosted almost 2 years ago
The design is great and you have done a nice job, but as a normal user I was expecting the dropdown to close when I click away, not specifically on the arrow, I know this may not be in the project tasks, yet I think it's worth mentioning.
1 - @georgeCx5Submitted almost 2 years ago@ZolfikaarPosted almost 2 years ago
Nice one, but there is some white space to the right at medium screen size (tablet) and also small screen, I think the content needs to be more centered to eliminate that white space. Anything else looks fine.
0