src/app/components/corporate/corporate.component.ts
Personal corporate component ~implements OnInit
OnInit
selector | app-corporate |
styleUrls | ./corporate.component.scss |
templateUrl | ./corporate.component.html |
Properties |
|
Methods |
Accessors |
constructor(portfolioService: PortfolioService, uiService: UiService, dataLoaderService: DataLoaderService, titleService: Title)
|
||||||||||||||||||||
Constructs the personal corporate component.
Parameters :
|
ngOnInit |
ngOnInit()
|
Initialization
Returns :
void
|
Public setTitle | ||||||||
setTitle(newTitle: string)
|
||||||||
Sets a new page title.
Parameters :
Returns :
void
|
Public uiText | ||||||
uiText(key: string)
|
||||||
UI safe text. Switchable to placeholder or blank.
Parameters :
Returns :
string
|
Public Readonly portfolioService |
Type : PortfolioService
|
The portfolio service injected dependency.
|
Public Readonly uiService |
Type : UiService
|
The ui service injected dependency.
|
name |
getname()
|
Name. |
decorations |
getdecorations()
|
Decorations delegate. |
ui |
getui()
|
UI delegate. |
./corporate.component.scss
@use "../property/property.component.scss";
.vertical-center {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
@media (min-width:768px) {
.container-fluid {
width: 50%;
width: 50vh;
}
}
.banded {
margin: 0px;
}
.avatar {
width: 512px;
width: 50vh;
height: 512px;
height: 50vh;
margin: 15px;
background: url("/assets/icons/icon-512x512.png") no-repeat 50%;
background-size: auto auto;
background-size: cover;
}
div[class^="col-"],
div[class*=" col-"] {
border-color: transparent;
}