mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-21 13:09:16 +00:00
23 lines
295 B
CSS
23 lines
295 B
CSS
.docs {
|
|
display: grid;
|
|
grid-template-columns: 210px auto 190px;
|
|
grid-template-areas: 'menu article on-this-page';
|
|
gap: 40px;
|
|
}
|
|
|
|
.docs h1 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.docs .menu {
|
|
grid-area: menu;
|
|
}
|
|
|
|
.docs article {
|
|
grid-area: article;
|
|
}
|
|
|
|
.docs .on-this-page {
|
|
grid-area: on-this-page;
|
|
}
|