15 changed files with 56 additions and 120 deletions
@ -1,53 +0,0 @@
|
||||
.selectUnitPopover { |
||||
width: 550px; |
||||
height: 492px; |
||||
|
||||
nz-form-item { |
||||
margin: 12px 0; |
||||
} |
||||
|
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
.popoverTitle { |
||||
display: flex; |
||||
align-items: center; |
||||
|
||||
span { |
||||
color: #C7CAD0; |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.selectedspan { |
||||
color: #2C4DC0; |
||||
} |
||||
} |
||||
|
||||
.popoverContent { |
||||
flex: 1; |
||||
display: flex; |
||||
flex-direction: column; |
||||
overflow: hidden; |
||||
|
||||
.popoverContentitem { |
||||
flex: 1; |
||||
overflow-y: auto; |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
p { |
||||
text-align: center; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.popoverBtn { |
||||
display: flex; |
||||
justify-content: flex-end; |
||||
margin-top: 16px; |
||||
|
||||
button { |
||||
margin-left: 18px; |
||||
} |
||||
} |
||||
} |
@ -1,17 +0,0 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-select-unit', |
||||
templateUrl: './select-unit.component.html', |
||||
styleUrls: ['./select-unit.component.scss'] |
||||
}) |
||||
export class SelectUnitComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
|
||||
complaint |
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -1 +0,0 @@
|
||||
<p>test works!</p> |
@ -1,25 +0,0 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { TestComponent } from './test.component'; |
||||
|
||||
describe('TestComponent', () => { |
||||
let component: TestComponent; |
||||
let fixture: ComponentFixture<TestComponent>; |
||||
|
||||
beforeEach(async () => { |
||||
await TestBed.configureTestingModule({ |
||||
declarations: [ TestComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
}); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(TestComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -1,15 +0,0 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-test', |
||||
templateUrl: './test.component.html', |
||||
styleUrls: ['./test.component.scss'] |
||||
}) |
||||
export class TestComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -0,0 +1,3 @@
|
||||
<div class="chatbox"> |
||||
|
||||
</div> |
@ -0,0 +1,7 @@
|
||||
.chatbox { |
||||
width: 478px; |
||||
height: 734px; |
||||
background: #F5F6F8; |
||||
border-radius: 4px 4px 4px 4px; |
||||
opacity: 1; |
||||
} |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-chat-window', |
||||
templateUrl: './chat-window.component.html', |
||||
styleUrls: ['./chat-window.component.scss'] |
||||
}) |
||||
export class ChatWindowComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue