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

Commit 3578edd

Browse files
feat: placeholder color and text
1 parent 403d384 commit 3578edd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ app-image {
1818
&.action-button {
1919
--min-height: 42px;
2020
}
21+
22+
&.history-empty {
23+
--color: var(--ion-color-medium);
24+
}
2125
}
2226

2327
ion-item-divider {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ export class AppImage {
154154

155155
private renderPhotosHistory() {
156156
if (!this.photosHistoryOdd && !this.photosHistoryEven) {
157-
return <ion-item>
158-
<ion-label>Empty</ion-label>
157+
return <ion-item class="history-empty">
158+
<ion-label class="ion-text-wrap"><small>You have not used any photos so far</small></ion-label>
159159
</ion-item>
160160
} else {
161161
return <div class="history-photos ion-padding">

0 commit comments

Comments
 (0)