Skip to content
Snippets Groups Projects
Commit 98b58571 authored by Sebastian Wittek's avatar Sebastian Wittek
Browse files

final design and implementation of present-comment

parent 468a2dd6
4 merge requests!171SWTP Comment Project,!170Fix linter in pipe,!169WebSocket Connector,!168Filter comment list
/*
#comment {
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 100px;
height: 100px;
background-color: blue;
font-size: 1em;
}
*/
#comment {
display: flex;
flex-direction: column;
......@@ -22,8 +7,8 @@
min-height: 90vh;
font-size: 2.1em;
margin: 0.5em 0.5em;
}
}
#exitButton {
position:absolute;
......
/*
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PresentCommentComponent } from './present-comment.component';
describe('PresentCommentComponent', () => {
......@@ -23,3 +23,4 @@ describe('PresentCommentComponent', () => {
expect(component).toBeTruthy();
});
});
*/
import { Component, OnInit } from '@angular/core';
import { MatDialog, MatDialogRef} from '@angular/material';
import { TranslateService} from '@ngx-translate/core';
import { MatDialog, MatDialogRef } from '@angular/material';
import { TranslateService } from '@ngx-translate/core';
@Component({
selector: 'app-present-comment',
......
......@@ -23,7 +23,7 @@ import { LoginComponent } from './login/login.component';
import { StatisticHelpComponent } from './_dialogs/statistic-help/statistic-help.component';
import { CommentComponent } from './comment/comment.component';
import { SubmitCommentComponent } from './_dialogs/submit-comment/submit-comment.component';
import {PresentCommentComponent} from "./_dialogs/present-comment/present-comment.component";
import { PresentCommentComponent } from './_dialogs/present-comment/present-comment.component';
@NgModule({
imports: [
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment