whitespace problem on smaller screen sizes
Hello everyone! Is anyone else having a problem with there being added whitespace on smaller screens with their nuxt3 websites? added a screenshot so you can visualise what i mean. Thanks in advance!
6 Replies
I think it has to do something with your css
has something to do*
I've been combing through everything and can't see where its coming from, (https://vtimegames.com/) is the website if you inspect you might be able to see?
It's the negative margin on the v-row
I did change that on my other website and it's still showing
checking
as @Reinier Kaper suggested its the negative margin did you try to restart the server after chaning that margin ?
use this to better visualise the problem:
* {
background: #000 !important;
color: #0f0 !important;
outline: solid #f00 1px !important;
}
Removing the -12 margin worked! just had to put it in global styling, thank you! It seems vuetify applies it automatically which is annoying