Edrol97
Silver Coder
Hi all,
I've been toying around with many elements of my site this week and am wanting to make the functionality for mobile better. I've got a wordle style game on the site which can be accessed by the following link. My issue is it currently looks very different on mobile. I want to make the boxes appear smaller. I was thinking it would be
but I have tried this and it didn't work. Really appreciate any help you can offer!
I've been toying around with many elements of my site this week and am wanting to make the functionality for mobile better. I've got a wordle style game on the site which can be accessed by the following link. My issue is it currently looks very different on mobile. I want to make the boxes appear smaller. I was thinking it would be
CSS:
@media (min-width: 768px) {
.inputs {
width: 20%;
}
}
but I have tried this and it didn't work. Really appreciate any help you can offer!