Please rate my first solution :)
Agun Akindele
@agun36All comments
- @IliaIvashkevichSubmitted over 1 year ago
- @harsh18sSubmitted over 1 year ago
Any feedback will be appreciated.
@agun36Posted over 1 year ago.content { padding:1rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .content p { //remove the color opacity:0.8; font-weight: 400; }
1 - @MiR-stackSubmitted about 2 years ago
how can i change svg icon color?
@agun36Posted over 1 year agoClick on the svg then write style="#fff" at the front of the path inside the xthml
0 - @cmwfxSubmitted over 1 year ago
This was really challenging for me and would love any feedback on my CSS because i feel like its a bit messy. Any feedback would be greatly appreciated.
@agun36Posted over 1 year agodo this to look more okay #mobile-first .content-container{ padding:1.5rem; overflow-hidden; border-radius background-color:white; remove height; display:grid; }
desktop media query to start form min-width:767px
.container{ grid-template-columns:1fr 1fr ; place-items:center; }
Marked as helpful1 - @yeabLimtlessSubmitted over 1 year ago
'm new to frontend development, and I'm finding it to be a good challenge. However, I would appreciate any feedback you have on my work
@agun36Posted over 1 year agoinside your main do something like this /style/ .card-container{ background-color:white; border-radius:18px; overflow: hidden;// this will let the border radius to show display: grid; place-items:center; } @(min-width:767px){ grid-template-column:1fr 1fr; }
<main> <div className="card-container"> <Result /> <Summary /> </div> </main>Marked as helpful0