Archived
25 lines
391 B
TypeScript
Executable File
25 lines
391 B
TypeScript
Executable File
import { Component } from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'app-account-settings',
|
|
templateUrl: './account-settings.component.html',
|
|
styles: [`
|
|
h4 i {
|
|
margin-right: 10px;
|
|
}
|
|
a, a:visited, a:hover {
|
|
color: black;
|
|
}
|
|
.card {
|
|
margin-right: 20px;
|
|
width: 30%;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
`]
|
|
})
|
|
export class AccountSettingsComponent {
|
|
|
|
}
|