Skip to content

Commit

Permalink
fix: button casing
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Feb 15, 2021
1 parent 4426eb2 commit 734505c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/assets/stylesheets/_sn.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
@extend .border-0;
@extend .bg-main;
@extend .cursor-pointer;
@extend .capitalize;
@extend .font-bold;
@extend .py-2;
@extend .px-3;
Expand Down
4 changes: 4 additions & 0 deletions app/assets/stylesheets/_ui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ $screen-md-max: ($screen-lg-min - 1) !default;
background-color: transparent;
}

.capitalize {
text-transform: capitalize;
}

.col-start-1 {
grid-column-start: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion app/assets/templates/directives/account-menu.pug
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
| like entering your account password or application passcode.
.sk-panel-row(ng-if="self.state.protectionsDisabledUntil")
button.sk-button.info(ng-click="self.enableProtections()")
span.sk-label Enable protections
span.sk-label.capitalize Enable protections
.sk-panel-section
.sk-panel-section-title Passcode Lock
div(ng-if='!self.state.hasPasscode')
Expand Down

0 comments on commit 734505c

Please sign in to comment.