@PhantomOzSubmitted about 4 years ago
Leonel Meque
@leonelmequeAll comments
- @leonelmequePosted about 4 years ago
Hi, I think you have to review you css code for responsiveness, when I open the app it starts with the content all in column instead of a slide look and feel.
body{ margin: 0; overflow-x: hidden; font-family: 'Spartan'; // This should be 'Spartan', san-serif; }
It's also a best practice if you add this piece of code in to your css
*{ padding:0; margin: 0; border:0; outline: 0; }
This will help you remove any unwanted padding or margin values that come with html by default.
0