Latest comments
- @Slavi123456Submitted over 1 year ago@SaitenhexerPosted over 1 year ago
Hi Slavi123456,
I'm just starting out so maybe there is a better solution but:
The page is not using the full height. That's why it isn't fully centered. The margin pushes it from the top edge but you would have to guess how much margin you need.
min-height: 100vh; display: flex; align-items: center; justify-content: center;
The whole viewport becomes available and the margin-top and the width is not needed anymore.
But it's really well done. Your solution is closer to the design than mine ;)
1