mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Fix posts width on user page with large screens
This commit is contained in:
parent
be98575dea
commit
76ff8565e4
@ -7,4 +7,8 @@
|
||||
.page-container {
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.user-page-right-column {
|
||||
max-width: 800px;
|
||||
}
|
@ -148,10 +148,10 @@ ComunicWeb.pages.userPage.main = {
|
||||
ComunicWeb.pages.userPage.profileInfos.display(infos, leftColumn);
|
||||
|
||||
//Create right column
|
||||
var rightColumn = createElem2({
|
||||
const rightColumn = createElem2({
|
||||
appendTo: row,
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user