+
+
{{ postModalService.title$ | async }}
+
+
+
+
\ No newline at end of file
diff --git a/apps/angular-app/src/app/components/post-modal/post-modal.component.scss b/apps/angular-app/src/app/components/post-modal/post-modal.component.scss
new file mode 100644
index 00000000..2456c850
--- /dev/null
+++ b/apps/angular-app/src/app/components/post-modal/post-modal.component.scss
@@ -0,0 +1,38 @@
+@import '../../shared/variables';
+
+.mfee-modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ &__content {
+ background-color: white;
+ width: 90vw;
+ padding: 1.5rem;
+
+ @media (min-width: 768px) {
+ width: 60vw;
+ }
+ }
+
+ &__form {
+ display: flex;
+ flex-direction: column;
+ }
+
+ &__title {
+ margin-top: 0;
+ text-align: center;
+ }
+
+ &__footer {
+ display: flex;
+ justify-content: flex-end;
+ }
+}
diff --git a/apps/angular-app/src/app/components/post-modal/post-modal.component.spec.ts b/apps/angular-app/src/app/components/post-modal/post-modal.component.spec.ts
new file mode 100644
index 00000000..30308527
--- /dev/null
+++ b/apps/angular-app/src/app/components/post-modal/post-modal.component.spec.ts
@@ -0,0 +1,21 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { PostModalComponent } from './post-modal.component';
+
+describe('PostModalComponent', () => {
+ let component: PostModalComponent;
+ let fixture: ComponentFixture
Comments
+ + ++-
+
+ person
+ {{ comment.author }}
+
+
+
+{{ comment.content }}
+