mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Fix posts width on user page with large screens
This commit is contained in:
parent
be98575dea
commit
76ff8565e4
@ -8,3 +8,7 @@
|
|||||||
max-width: 1500px;
|
max-width: 1500px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.user-page-right-column {
|
||||||
|
max-width: 800px;
|
||||||
|
}
|
@ -148,10 +148,10 @@ ComunicWeb.pages.userPage.main = {
|
|||||||
ComunicWeb.pages.userPage.profileInfos.display(infos, leftColumn);
|
ComunicWeb.pages.userPage.profileInfos.display(infos, leftColumn);
|
||||||
|
|
||||||
//Create right column
|
//Create right column
|
||||||
var rightColumn = createElem2({
|
const rightColumn = createElem2({
|
||||||
appendTo: row,
|
appendTo: row,
|
||||||
type: "div",
|
type: "div",
|
||||||
class: "col-md-8"
|
class: "col-md-8 user-page-right-column"
|
||||||
});
|
});
|
||||||
|
|
||||||
//Display post creation form if the user is allowed to do so
|
//Display post creation form if the user is allowed to do so
|
||||||
|
Loading…
Reference in New Issue
Block a user