@istealersn-devSubmitted over 1 year ago
Santhosh Kumar
@Iamsanthosh2203All comments
- @Iamsanthosh2203Posted over 1 year ago
Hey there , I am santhosh i am also from Tamil Nadu !!! Catch me up on IG - i_am.santhosh
0 - @timDeHofSubmitted over 1 year ago
Was using typescript too much for a small challenge?
Which areas of my code needs improvements?
What kind of best practices would you use to optimize the design?
Also, any Feedback welcome!
@Iamsanthosh2203Posted over 1 year agoHi there , When I visit your site on my computer its scrollable try to make it single page using the height of the //global conatiner// which contains all the //elements// inside... To make it single page use this example :
HTML !!!
<div class="global"> <main>///Your contents in here</main> </div>CSS !!! .global{ display:flex; height:100vh; justify-content:center; align-items:center; }
This code will center the items to the middle of the screen
Marked as helpful1