mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
docs(docs-infra): add top level banner component - create top level banner component - write unit tests - close banner and keep state in the local storage - fix: support screens of tablets and phones PR Close #57458
15 lines
479 B
HTML
15 lines
479 B
HTML
@if (!hasClosed()) {
|
|
@if (link()) {
|
|
<a [href]="link()" class="docs-top-level-banner">
|
|
<h1 tabindex="-1" class="docs-top-level-banner-cta">{{ text() }}</h1>
|
|
</a>
|
|
} @else {
|
|
<div class="docs-top-level-banner">
|
|
<h1 tabindex="-1" class="docs-top-level-banner-cta">{{ text() }}</h1>
|
|
</div>
|
|
}
|
|
|
|
<button class="docs-top-level-banner-close" type="button" (click)="close()">
|
|
<docs-icon class="docs-icon_high-contrast">close</docs-icon>
|
|
</button>
|
|
}
|