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

Commit 5207605

Browse files
feat: gui a bit more clear
1 parent 7615739 commit 5207605

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

studio/src/app/popovers/editor/app-code/app-code.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,9 @@ app-code {
2727
--background: inherit;
2828
--ion-item-border-color: transparent;
2929
--ion-padding: 0;
30+
31+
ion-label {
32+
margin: 16px 0;
33+
}
3034
}
3135
}

studio/src/app/popovers/editor/app-code/app-code.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,15 @@ export class AppCode {
289289
</ion-item-divider>
290290

291291
<ion-item>
292-
<ion-input value={this.highlightLines} placeholder="Click to enter lines" debounce={500}
292+
<ion-input value={this.highlightLines} placeholder="Enter lines here" debounce={500}
293293
onIonInput={(e: CustomEvent<KeyboardEvent>) => this.handleInput(e)}
294294
onIonChange={() => this.highlightSelectedLines()}></ion-input>
295295
</ion-item>
296296

297+
<ion-item>
298+
<small>To highlight lines, use a coma separated list of lines. For example: 0,2 7,7 13,15</small>
299+
</ion-item>
300+
297301
<ion-item>
298302
<ion-label>Color</ion-label>
299303
<input type="color" value={this.highlightColor} onChange={(e) => this.selectColor(e, this.setHighlightColor)}></input>

0 commit comments

Comments
 (0)