mirror of
https://github.com/bitwarden/browser
synced 2026-02-04 18:53:20 +00:00
* add container story * Update libs/components/src/container/container.component.ts Co-authored-by: Vicki League <vleague@bitwarden.com> * use lorem ipsum for example --------- Co-authored-by: Vicki League <vleague@bitwarden.com>
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
/**
|
|
* bit-container is a minimally styled component that limits the max width of its content to the tailwind theme variable '4xl'. '4xl' is equal to the value of 56rem
|
|
*/
|
|
@Component({
|
|
selector: "bit-container",
|
|
templateUrl: "container.component.html",
|
|
})
|
|
export class ContainerComponent {}
|