mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 17:43:22 +00:00
* wip * wip * implement new control flow syntax * new landing helper components * add missing imports to header * create max width container * create landing card component * address claude feedback * fix center aligned text * ensure secondary content is centered for now * only render container when there is content * remove max width container * remove constructor init of variable * remove unnecessary styling * build styling into helper components * ensure content grows * ensure content takes allowed width * apply padding to elements instead of header and check for projected content * use Array.from to filter nodes * fix logo width * use has selector to apply actions styles, simplify heading padding * remove unneeded content projection * remove unneeded comment * use modern control flow for story * update max width classes to signal and remove switch * make logo input readonly * remove variables * remove object type * fix width types usage * add comments about component usage * fix broken variable reference * fix broken max width class usage * only appyly y padding to header actions
29 lines
869 B
TypeScript
29 lines
869 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { LandingCardComponent } from "./landing-card.component";
|
|
import { LandingContentComponent } from "./landing-content.component";
|
|
import { LandingFooterComponent } from "./landing-footer.component";
|
|
import { LandingHeaderComponent } from "./landing-header.component";
|
|
import { LandingHeroComponent } from "./landing-hero.component";
|
|
import { LandingLayoutComponent } from "./landing-layout.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
LandingLayoutComponent,
|
|
LandingHeaderComponent,
|
|
LandingHeroComponent,
|
|
LandingFooterComponent,
|
|
LandingContentComponent,
|
|
LandingCardComponent,
|
|
],
|
|
exports: [
|
|
LandingLayoutComponent,
|
|
LandingHeaderComponent,
|
|
LandingHeroComponent,
|
|
LandingFooterComponent,
|
|
LandingContentComponent,
|
|
LandingCardComponent,
|
|
],
|
|
})
|
|
export class LandingLayoutModule {}
|