1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00
Files
browser/libs/components/src/section/section.component.ts
Will Martin e89c82defe [CL-236] Card component (#8900)
* add card component; adjust section margin on small screens
2024-04-24 14:52:29 -04:00

15 lines
323 B
TypeScript

import { CommonModule } from "@angular/common";
import { Component } from "@angular/core";
@Component({
selector: "bit-section",
standalone: true,
imports: [CommonModule],
template: `
<section class="tw-mb-6 md:tw-mb-12">
<ng-content></ng-content>
</section>
`,
})
export class SectionComponent {}