docs(style): make more responsive for mobile (#10853)

* docs(style): make more responsive for mobile

* Make a responsive navbar

* more fixes and tweaks

* Add README instructions
This commit is contained in:
Maxime Beauchemin
2020-09-14 11:58:45 -07:00
committed by GitHub
parent d93b2b99b2
commit 08ec509dc9
15 changed files with 682 additions and 529 deletions

View File

@@ -99,3 +99,7 @@ export const getPreviousAndNextUrls = (menus) => {
};
export const getCurrentMenu = () => {};
const breakpoints = [576, 768, 992, 1200];
export const mq = breakpoints.map((bp) => `@media (max-width: ${bp}px)`);