mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
25 lines
491 B
TypeScript
25 lines
491 B
TypeScript
import {Component} from "angular2/core";
|
|
|
|
@Component({
|
|
selector: 'app-navbar',
|
|
template: `
|
|
<nav class="navbar navbar-default navbar-fixed-top">
|
|
<div class="container-fluid">
|
|
<ng-content></ng-content>
|
|
</div>
|
|
</nav>
|
|
`,
|
|
styles: [
|
|
`
|
|
:host .image-button {
|
|
padding-bottom: 10px;
|
|
padding-top: 12px;
|
|
max-height: 50px;
|
|
}
|
|
`
|
|
]
|
|
})
|
|
export class AppNavBar {
|
|
|
|
}
|