zregvart commented on a change in pull request #197: fixed blog page categories width URL: https://github.com/apache/camel-website/pull/197#discussion_r392141548
########## File path: antora-ui-camel/src/css/doc.css ########## @@ -634,3 +634,9 @@ kbd, .stretch { width: 100%; } +/* for mobile screens */ +@media screen and (max-width: 600px) { + .doc aside { + width: auto; + } +} Review comment: Perhaps we could remove the categories on any screen smaller than 1024px, like this: ```suggestion @media screen and (max-width:1023px) { .doc aside { display: none; } } ``` That way we don't introduce any new media breakpoints. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services