You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/03/13 10:20:57 UTC

[GitHub] [camel-website] zregvart commented on a change in pull request #197: fixed blog page categories width

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:
users@infra.apache.org


With regards,
Apache Git Services