diff --git a/docs/src/app/blocks/components/pager-block/pager-block.component.scss b/docs/src/app/blocks/components/pager-block/pager-block.component.scss index defadeddc..df8867d24 100644 --- a/docs/src/app/blocks/components/pager-block/pager-block.component.scss +++ b/docs/src/app/blocks/components/pager-block/pager-block.component.scss @@ -38,6 +38,7 @@ } span { word-wrap: normal; + line-height: 2rem; } } diff --git a/docs/src/app/documentation/page/page.component.ts b/docs/src/app/documentation/page/page.component.ts index d8ec2ef59..dd4943aef 100644 --- a/docs/src/app/documentation/page/page.component.ts +++ b/docs/src/app/documentation/page/page.component.ts @@ -66,7 +66,7 @@ export class NgdPageComponent implements OnInit, AfterContentChecked, OnDestroy }), filter(item => item), tap((item: any) => { - this.titleService.setTitle(`RNUK - ${item.name}`); + this.titleService.setTitle(`UI Kitten - ${item.name}`); }), publishReplay(), refCount(), diff --git a/docs/src/structure.ts b/docs/src/structure.ts index c6d904de9..9a2bf9aee 100644 --- a/docs/src/structure.ts +++ b/docs/src/structure.ts @@ -134,6 +134,20 @@ export const structure = [ type: 'group', name: 'Global', }, + { + type: 'tabs', + name: 'Text', + icon: 'text.svg', + source: [ + 'Text', + ], + overview: [ + { + name: 'Text', + images: ['text.png'], + }, + ], + }, { type: 'tabs', name: 'Layout', @@ -383,20 +397,6 @@ export const structure = [ }, ], }, - { - type: 'tabs', - name: 'Text', - icon: 'text.svg', - source: [ - 'Text', - ], - overview: [ - { - name: 'Text', - images: ['text.png'], - }, - ], - }, ], }, { diff --git a/src/framework/ui/layout/layout.component.tsx b/src/framework/ui/layout/layout.component.tsx index 8d84d6efe..a58c60b58 100644 --- a/src/framework/ui/layout/layout.component.tsx +++ b/src/framework/ui/layout/layout.component.tsx @@ -34,7 +34,7 @@ export type LayoutProps = StyledComponentProps & ViewProps & ComponentProps; * @extends React.Component * * @property {string} level - Determines background color level of component. - * Can be `1`, `2`, `3` or `4`. + * Can be `level='1'`, `level='2'`, `level='3'` or `level='4'`. * * @property {React.ReactElement | React.ReactElement[]} children - Determines the children of the component. *