Skip to content

Commit

Permalink
fix(user/config): style change for stepper
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed May 17, 2020
1 parent 9a810b4 commit 4f520fe
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/app/pages/user/config/config.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ import { NoopAuthFlow } from 'src/app/@dataflow/rclone';
</nb-form-field>
</nb-card-body>
<nb-card-footer>
<nb-actions>
<nb-action>
<!-- <nb-actions> -->
<!-- <nb-action> -->
<button nbButton outline status="danger">Cancel</button>
</nb-action>
<nb-action>
<!-- </nb-action> -->
<!-- <nb-action> -->
<button
nbButton
outline
Expand All @@ -97,24 +97,27 @@ import { NoopAuthFlow } from 'src/app/@dataflow/rclone';
[status]="authPass === null ? 'info' : authPass === true ? 'success' : 'warning'"
></nb-icon>
</button>
</nb-action>
<nb-action>
<!-- </nb-action> -->
<!-- <nb-action> -->
<button nbButton outline status="primary" [disabled]="disableSave$ | async" (click)="save()">
save
</button>
</nb-action>
</nb-actions>
<!-- </nb-action> -->
<!-- </nb-actions> -->
</nb-card-footer>
</nb-card>
`,
styles: [
`
`
nb-card {
max-width: 480px;
}
span[status='danger'] {
color: #ff3d71;
}
nb-card-footer > button {
margin-right: 0.668rem
}
`,
],
changeDetection: ChangeDetectionStrategy.OnPush,
Expand Down

0 comments on commit 4f520fe

Please sign in to comment.