Latest comments
- @idkbit@Ikacper
hey, your main card is little bit to wide, max width of 750px would be better
instead of creating div for image you could use pseudo class before to set image there
on smaller screen popup 'share' should look differently than on 1440px width
your alt message on avatar image is not good in my opinion, screen reader dont know who is michelle i would say its smiling woman or you can describe it more. Its only my thought, i have read one article about creating alt description thats what i remember.
In general i really like your solution, nice work
- @aasthaanand123@Ikacper
hey Aastha! your 'share' div goes on wrong position on higher screen width than 1440px drawer img should be handled by css not html ( if pictrue is responsible for design purposes only, should be handled by css) you could set max width on your main card so that the component does not expand on small screen, after clicking share btn you are not hiding card__last component
other things looks nice, good job! ;)
- @0-BSCode@Ikacper
i think you shouldn't use box shadow
images which are responsible for design only should be handled by css not html
it is possible to make only one class for buttons, you can check my solution
responding to your first question, i think, you can add on your body tag display: flex, flex-direction: column and height: 100vh and remove position absolute from container to achive vertically centered an element
- @binayab99@Ikacper
i have two suggestions
color of your buttons should be same color as color of the background
images which are responsible for design only should be handled by css not html
- @renaudTh@Ikacper
Im not sure why you put overflow: auto?
i think you shouldn't make this div, for img, just try to use background img on #content
you probably should use classes instead of id's for styling
instead of putting in every single id box-sizing: border-box you can use universal selector like that *{ box-sizing: border-box} it means every element will get those property
for fonts, paddings etc. its good practice to use rem instead px.
- @Aksharmeet@Ikacper
image for design only should be handled by css not by html ( use background-image) you should use flex direction: row-reverse for desktop view you didn't imported proper font
thats all my suggestions to change ;) good luck!