diff --git a/packages/mosaic-examples/mosaic/typography/module.ts b/packages/mosaic-examples/mosaic/typography/module.ts new file mode 100644 index 000000000..3db13c209 --- /dev/null +++ b/packages/mosaic-examples/mosaic/typography/module.ts @@ -0,0 +1,18 @@ +import { CommonModule } from '@angular/common'; +import { NgModule } from '@angular/core'; + +import { TypographyOverviewExample } from './typography-overview/typography-overview-example'; + + +const EXAMPLES = [ + TypographyOverviewExample +]; + +@NgModule({ + imports: [ + CommonModule + ], + declarations: EXAMPLES, + exports: EXAMPLES +}) +export class TypographyExamplesModule {} diff --git a/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.css b/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.css new file mode 100644 index 000000000..51019da92 --- /dev/null +++ b/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.css @@ -0,0 +1,7 @@ +small { + color: rgba(0, 0, 0, 0.3); +} + +.typography-group { + margin-bottom: 20px; +} diff --git a/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.html b/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.html new file mode 100644 index 000000000..8dd6b34aa --- /dev/null +++ b/packages/mosaic-examples/mosaic/typography/typography-overview/typography-overview-example.html @@ -0,0 +1,38 @@ +