diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-01-31 11:26:15 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-01-31 11:26:15 +0200 |
| commit | 9afa91194263af3c3d532cea2f2bda71eb607550 (patch) | |
| tree | f912a45772eeb5e7a856f6d5b1084ae983e27e5a | |
| parent | 7d6f6045f5b38c3636043b6bc55f77a1067a9f20 (diff) | |
| download | DevHive-9afa91194263af3c3d532cea2f2bda71eb607550.tar DevHive-9afa91194263af3c3d532cea2f2bda71eb607550.tar.gz DevHive-9afa91194263af3c3d532cea2f2bda71eb607550.zip | |
Fixed post creating input field vertical alignment and fixed word break on posts with a very long word
| -rw-r--r-- | src/DevHive.Angular/src/app/components/feed/feed.component.css | 2 | ||||
| -rw-r--r-- | src/DevHive.Angular/src/app/components/post/post.component.css | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/DevHive.Angular/src/app/components/feed/feed.component.css b/src/DevHive.Angular/src/app/components/feed/feed.component.css index 7b73533..73e1f3e 100644 --- a/src/DevHive.Angular/src/app/components/feed/feed.component.css +++ b/src/DevHive.Angular/src/app/components/feed/feed.component.css @@ -77,6 +77,7 @@ form { width: 100%; + height: 100%; } #top-bar { @@ -102,6 +103,7 @@ form { flex: 1; font-size: inherit; width: 100%; + height: 100%; margin: 0 auto; box-sizing: border-box; border: 2px solid var(--bg-color); diff --git a/src/DevHive.Angular/src/app/components/post/post.component.css b/src/DevHive.Angular/src/app/components/post/post.component.css index ddc5841..4095ff2 100644 --- a/src/DevHive.Angular/src/app/components/post/post.component.css +++ b/src/DevHive.Angular/src/app/components/post/post.component.css @@ -47,6 +47,7 @@ hr { .message { margin: .3em 0; + word-break: break-all; } .timestamp { |
