aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/post-page/post-page.component.html
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-22 20:35:04 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-22 20:35:04 +0200
commit1afe87209a9e7140fabd3ba58b5e7b470b68fc7b (patch)
tree6dffc49a516334a02f39d6e31e7cb682d544186c /src/app/components/post-page/post-page.component.html
parent9906b285148f54b4060c71012854a814409cc9d7 (diff)
downloadDevHive-Angular-1afe87209a9e7140fabd3ba58b5e7b470b68fc7b.tar
DevHive-Angular-1afe87209a9e7140fabd3ba58b5e7b470b68fc7b.tar.gz
DevHive-Angular-1afe87209a9e7140fabd3ba58b5e7b470b68fc7b.zip
Improved readability and consistency of margin global styling
Diffstat (limited to 'src/app/components/post-page/post-page.component.html')
-rw-r--r--src/app/components/post-page/post-page.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/components/post-page/post-page.component.html b/src/app/components/post-page/post-page.component.html
index b05046e..cfca6c0 100644
--- a/src/app/components/post-page/post-page.component.html
+++ b/src/app/components/post-page/post-page.component.html
@@ -4,8 +4,8 @@
<main class="centered-content scroll-standalone under-navbar flex-col" *ngIf="dataArrived">
<app-post [paramId]="postId.toString()"></app-post>
- <form class="card flex-col width-full no-margin-top" [formGroup]="addCommentFormGroup" (ngSubmit)="addComment()">
- <textarea rows="1" placeholder="Add a new comment" class="textarea-new-msg border-faded-slim border-bottom-only padding-dot2 margin-bot-bigger" formControlName="newComment"></textarea>
+ <form class="card flex-col width-full margin-0-top" [formGroup]="addCommentFormGroup" (ngSubmit)="addComment()">
+ <textarea rows="1" placeholder="Add a new comment" class="textarea-new-msg border-faded-slim border-bottom-only padding-dot2 margin-bot-dot5" formControlName="newComment"></textarea>
<button class="border-faded-slim padding-dot2 lighter-hover click-effect border-radius-dot3" type="submit">
Add Comment
</button>