Afnan Malik
@AfnanmkAll comments
- @HeshamAbdelalemSubmitted over 1 year ago@AfnanmkPosted over 1 year ago
Hi, Congratulations on completing the challenge. I appreciate your work. You have done a great job!
I have a suggestion for you to improve the visual design. On larger screen sizes(from 2000px) the design does not look very good. You can improve that by adding
main {max-width:1440px}
. So that the container width will not stretch as the screen size gets bigger.Marked as helpful1 - @impiiaSubmitted over 1 year ago@AfnanmkPosted over 1 year ago
Congratulations on completing the challenge! I am sure you have put a lot of effort into it. Your code is well-structured and readable. The layout also looks good on different screen sizes. I have a few suggestions for you to improve your project further.
- You can center the calculator container on the screen by applying the below code snippet -
body { width: 100vw; display: grid; min-height: 100vh; place-items: center; }
- The height of your result display screen increases when the numbers are bigger. It does not look good and messes up the layout. You can avoid that by adding
overflow:scroll
and removingheight:auto
in .calc-display . Also, removeoverflow-wrap
from .result-field
Marked as helpful0 - @joshbrahamSubmitted over 1 year ago
All feedback appreciated :)
@AfnanmkPosted over 1 year agoHi Joshua, You have done a great job! There is a little thing that needs to be fixed. When I toggle the theme switcher, It moves from 3 to 1 directly. I could not move from 3 to 2. I hope you understand.
0