fix(post form): align desktop post form to blotter left edge

Match the blotter's centered 468px column so the desktop post form
shares its left edge instead of being centered within its own width.
This commit is contained in:
Tommaso Casaburi
2026-05-21 19:03:47 +07:00
parent 5fc27fda21
commit b347205136
+12 -1
View File
@@ -10,7 +10,6 @@
.postFormDesktop {
font-size: var(--post-form-toggle-font-size);
font-weight: var(--post-form-toggle-font-weight);
text-align: center;
}
.postFormMobile {
@@ -170,6 +169,18 @@
.postFormMobile {
display: none;
}
.postFormDesktop {
width: 468px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
.postFormTable {
margin-left: 0;
margin-right: 0;
}
}
.uploadButton button {