change header columns elements in airwatch
This commit is contained in:
parent
219fa8c4f9
commit
fa8a7ca996
215 changed files with 26292 additions and 45 deletions
18
old-sae-airwatch/src/app/chatbot/new-input/new-input.html
Normal file
18
old-sae-airwatch/src/app/chatbot/new-input/new-input.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<div class="new-input">
|
||||
<!-- new input-->
|
||||
|
||||
<div class="welcome-text">
|
||||
<div class="welcome-icon">
|
||||
<!-- <i class="ri-robot-2-line"></i>-->
|
||||
<img alt="chatbot image" src="/chatbot.png">
|
||||
</div>
|
||||
How can we
|
||||
<span class="emphasis">
|
||||
assist
|
||||
</span>
|
||||
you today?
|
||||
</div>
|
||||
|
||||
<app-prompt-input></app-prompt-input>
|
||||
<app-tools-options></app-tools-options>
|
||||
</div>
|
23
old-sae-airwatch/src/app/chatbot/new-input/new-input.scss
Normal file
23
old-sae-airwatch/src/app/chatbot/new-input/new-input.scss
Normal file
|
@ -0,0 +1,23 @@
|
|||
.new-input {
|
||||
min-height: 80vh;
|
||||
padding: 0 200px;
|
||||
|
||||
.welcome-text {
|
||||
margin: 100px;
|
||||
font-size: 38px;
|
||||
font-weight: 500;
|
||||
letter-spacing: -7%;
|
||||
}
|
||||
|
||||
.welcome-icon {
|
||||
i {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.emphasis {
|
||||
color: #083b7d;
|
||||
}
|
||||
}
|
23
old-sae-airwatch/src/app/chatbot/new-input/new-input.spec.ts
Normal file
23
old-sae-airwatch/src/app/chatbot/new-input/new-input.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { NewInput } from './new-input';
|
||||
|
||||
describe('NewInput', () => {
|
||||
let component: NewInput;
|
||||
let fixture: ComponentFixture<NewInput>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [NewInput]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(NewInput);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
16
old-sae-airwatch/src/app/chatbot/new-input/new-input.ts
Normal file
16
old-sae-airwatch/src/app/chatbot/new-input/new-input.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {PromptInput} from "../prompt-input/prompt-input";
|
||||
import {ToolsOptions} from "../tools-options/tools-options";
|
||||
|
||||
@Component({
|
||||
selector: 'app-new-input',
|
||||
imports: [
|
||||
PromptInput,
|
||||
ToolsOptions
|
||||
],
|
||||
templateUrl: './new-input.html',
|
||||
styleUrl: './new-input.scss'
|
||||
})
|
||||
export class NewInput {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue