Further investigation is required, to decide if the two templates' divs should be divided in two different classes, such as .mind-post_mainand .mind-page_main, or if the page.hbs should simply have that class removed from the div.
The page.hbs template shares a class with post.hbs, which divides the main content in 3 columns.
This works as intended in posts, but results in the pages' content being in the leftmost column.
The issue is caused, in file "assets/screen.css", by this:
```css
.mind-post_main {
<...>
grid-template-columns: 1fr 4fr 1fr;
<...>
}
```
Further investigation is required, to decide if the two templates' divs should be divided in two different classes, such as `.mind-post_main`and `.mind-page_main`, or if the page.hbs should simply have that class removed from the div.
bea
added the bug label 2020-10-30 21:32:14 +01:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The page.hbs template shares a class with post.hbs, which divides the main content in 3 columns.
This works as intended in posts, but results in the pages' content being in the leftmost column.
The issue is caused, in file "assets/screen.css", by this:
Further investigation is required, to decide if the two templates' divs should be divided in two different classes, such as
.mind-post_mainand.mind-page_main, or if the page.hbs should simply have that class removed from the div.