diff options
author | crupest <crupest@outlook.com> | 2023-09-14 23:47:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-14 23:47:16 +0800 |
commit | 40b4871c3f7bfe04f332ae7fb687fd7d9ae34734 (patch) | |
tree | cba45fa30627a704c2fb5132eff3f936ba1dd54e /FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css | |
parent | c1f79460d57a4daba75bdc34b7b7a3ea2d7254b3 (diff) | |
download | timeline-40b4871c3f7bfe04f332ae7fb687fd7d9ae34734.tar.gz timeline-40b4871c3f7bfe04f332ae7fb687fd7d9ae34734.tar.bz2 timeline-40b4871c3f7bfe04f332ae7fb687fd7d9ae34734.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css')
-rw-r--r-- | FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css b/FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css new file mode 100644 index 00000000..5e93d9f2 --- /dev/null +++ b/FrontEnd/src/pages/timeline/edit/TimelinePostCreateView.css @@ -0,0 +1,33 @@ +.timeline-post-create-card {
+ position: sticky !important;
+ top: 106px;
+ z-index: 100;
+ 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;
+}
+
+.timeline-post-create-edit-area {
+ flex-grow: 1;
+}
+
+
+
+.timeline-post-create-right-area {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ margin-left: 1em;
+}
|