classlesscss
classlesscss copied to clipboard
Padding on collapsed nav
Maybe padding should be reduced on small device where nav is on the left. Something like:
@media (max-width:40rem) {
nav ul:first-child > li {
padding:0 0 0 0.6rem;
}
}
A vertical padding of 0 looks too narrow for my taste but I will consider to use just padding: .6rem; globally. Thanks.
Maybe in a var as it depends on how many items we have in the menu (and it'll not break existing version) ?