After constructing a website with the Bulma CSS framework, I encountered an issue with padding on mobile devices. To optimize the user experience, I need to reduce the padding on smaller screens to 5% or less instead of the initial 10%. However, I am unsure how to specifically adjust the padding for mobile devices in the framework. Seeking assistance as I couldn't find any relevant information in the documentation. Can anyone provide me with guidance on this matter? Here's an example:
nav{
padding-left: 10%;
padding-right: 10%;
}
What I aim to achieve is (but only for mobile devices):
nav{
padding-left: 5%;
padding-right: 5%;
}