Skip to content

Commit

Permalink
for now
Browse files Browse the repository at this point in the history
  • Loading branch information
monacodelisa committed Feb 7, 2024
1 parent 981fd4b commit de1e62d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
:host {
max-width: 37vw;
min-height: 65vh;
}

h1 {
text-align: center;
line-height: 3rem;
}

.video-wrapper {
display: flex;
margin: 1rem auto 0.3rem;
justify-content: center;

iframe {
width: 32rem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import { Component, Input } from "@angular/core";
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterOutlet, RouterLink, RouterLinkActive } from "@angular/router";
import { ToolbarModule } from "primeng/toolbar";

@Component({
selector: "app-sidenav",
standalone: true,
imports: [RouterOutlet, RouterLink, RouterLinkActive, ToolbarModule],
imports: [FormsModule, ReactiveFormsModule, RouterOutlet, RouterLink, RouterLinkActive, ToolbarModule],
templateUrl: "./sidenav.component.html",
styleUrl: "./sidenav.component.css",
})
export class SidenavComponent {
@Input() sidenavOpen: boolean = true;

date: Date[] | undefined;

items = [
{
label: "Home",
Expand All @@ -27,6 +30,6 @@ export class SidenavComponent {
label: "About Angular",
icon: "pi pi-shield",
route: "/about-angular",
},
}
];
}

0 comments on commit de1e62d

Please sign in to comment.