Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit cb89816

Browse files
feat: a bit clearer?
1 parent 7edd2ec commit cb89816

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

studio/src/app/popovers/editor/app-slot-type/app-slot-type.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ export class AppSlideAdd {
3030

3131
render() {
3232
return [<ion-toolbar class="ion-margin ion-padding-end">
33-
<h2>Toggle element type</h2>
33+
<h2>Toggle section</h2>
3434
<ion-anchor slot="end" onClick={() => this.closePopover()}><ion-icon name="close"></ion-icon></ion-anchor>
3535
</ion-toolbar>,
3636

3737
<ion-list>
38-
<a onClick={() => this.closePopover(SlotType.H1)} class={this.currentType === SlotType.H1 ? "current" : ""}><ion-item><h1>Title</h1></ion-item></a>
39-
<a onClick={() => this.closePopover(SlotType.H2)} class={this.currentType === SlotType.H2 ? "current" : ""}><ion-item><h2>Title</h2></ion-item></a>
40-
<a onClick={() => this.closePopover(SlotType.H3)} class={this.currentType === SlotType.H3 ? "current" : ""}><ion-item><h3>Title</h3></ion-item></a>
38+
<a onClick={() => this.closePopover(SlotType.H1)} class={this.currentType === SlotType.H1 ? "current" : ""}><ion-item><h1>Huge title</h1></ion-item></a>
39+
<a onClick={() => this.closePopover(SlotType.H2)} class={this.currentType === SlotType.H2 ? "current" : ""}><ion-item><h2>Large title</h2></ion-item></a>
40+
<a onClick={() => this.closePopover(SlotType.H3)} class={this.currentType === SlotType.H3 ? "current" : ""}><ion-item><h3>Small title</h3></ion-item></a>
4141
<a onClick={() => this.closePopover(SlotType.SECTION)} class={this.currentType === SlotType.SECTION ? "current" : ""}><ion-item><p>Paragraph</p></ion-item></a>
4242
<a onClick={() => this.closePopover(SlotType.CODE)} class={this.currentType === SlotType.CODE ? "current" : ""}><ion-item><p>Code</p></ion-item></a>
4343
</ion-list>

0 commit comments

Comments
 (0)