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

Commit cab272f

Browse files
style: edit slide options with border and box-shadow grouped
1 parent 1cc870e commit cab272f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
app-edit-slide {
22
@import "../../../../../global/theme/editor/editor-info";
33
@import "../../../../../global/theme/editor/editor-popover";
4+
5+
ion-list {
6+
> * {
7+
display: block;
8+
margin-bottom: 16px;
9+
}
10+
}
411
}

studio/src/app/popovers/editor/slide/app-edit-slide/app-edit-slide.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {EditAction} from '../../../../utils/editor/edit-action';
44

55
@Component({
66
tag: 'app-edit-slide',
7-
styleUrl: 'app-edit-slide.scss'
7+
styleUrl: 'app-edit-slide.scss',
88
})
99
export class AppEditSlide {
1010
@Element() el: HTMLElement;
@@ -34,7 +34,7 @@ export class AppEditSlide {
3434
}
3535

3636
const data = {
37-
action: $event.detail
37+
action: $event.detail,
3838
};
3939

4040
await (this.el.closest('ion-popover') as HTMLIonPopoverElement).dismiss(data);
@@ -48,7 +48,7 @@ export class AppEditSlide {
4848
<ion-icon aria-label="Close" src="/assets/icons/ionicons/close.svg"></ion-icon>
4949
</ion-router-link>
5050
</ion-toolbar>,
51-
<ion-list>{this.renderOptions()}</ion-list>
51+
<ion-list class="article">{this.renderOptions()}</ion-list>,
5252
];
5353
}
5454

0 commit comments

Comments
 (0)