diff options
author | crupest <crupest@outlook.com> | 2023-09-14 18:58:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-14 18:58:44 +0800 |
commit | c1f79460d57a4daba75bdc34b7b7a3ea2d7254b3 (patch) | |
tree | 0ea402149be3bb6f7042e7ed89000627c9ad4589 /FrontEnd/src/pages/timeline/TimelinePostCreateView.css | |
parent | 8bd0c7eba40be17daf7c445654f125f0a42e0e83 (diff) | |
download | timeline-c1f79460d57a4daba75bdc34b7b7a3ea2d7254b3.tar.gz timeline-c1f79460d57a4daba75bdc34b7b7a3ea2d7254b3.tar.bz2 timeline-c1f79460d57a4daba75bdc34b7b7a3ea2d7254b3.zip |
Fix mobile post create.
Diffstat (limited to 'FrontEnd/src/pages/timeline/TimelinePostCreateView.css')
-rw-r--r-- | FrontEnd/src/pages/timeline/TimelinePostCreateView.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/FrontEnd/src/pages/timeline/TimelinePostCreateView.css b/FrontEnd/src/pages/timeline/TimelinePostCreateView.css index 252340f6..e483ca17 100644 --- a/FrontEnd/src/pages/timeline/TimelinePostCreateView.css +++ b/FrontEnd/src/pages/timeline/TimelinePostCreateView.css @@ -5,6 +5,16 @@ margin-right: 200px;
}
+@media (max-width: 576px) {
+ .timeline-post-create-container {
+ padding-top: 60px;
+ }
+
+ .timeline-post-create-card{
+ margin-right: 0;
+ }
+}
+
.timeline-post-create {
display: flex;
}
@@ -41,4 +51,4 @@ flex-direction: column;
align-items: center;
margin-left: 1em;
-}
\ No newline at end of file +}
|