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

Commit 5792e8f

Browse files
style: follow close buttons which are right aligned not left
1 parent a3d2efb commit 5792e8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

studio/src/app/pages/core/app-signin/app-signin.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ app-signin {
66
ion-buttons.back {
77
position: absolute;
88
top: 8px;
9-
left: 8px;
9+
right: 8px;
1010
}
1111
}
1212

studio/src/app/pages/core/app-signin/app-signin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export class AppSignIn {
298298
return undefined;
299299
} else {
300300
return <ion-buttons class="back">
301-
<ion-button onClick={() => this.navigateBack()}>
301+
<ion-button onClick={() => this.navigateBack()} color="primary">
302302
<ion-icon name="close"></ion-icon>
303303
</ion-button>
304304
</ion-buttons>;

0 commit comments

Comments
 (0)