Skip to content

Commit

Permalink
maraf#230 - Updating components and styles 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Aug 7, 2019
1 parent a3c0ba2 commit 20644db
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Components/Bootstrap/Modal.razor
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{
<button class="btn btn-primary" @onclick="@OnPrimaryButtonClick">@PrimaryButtonText</button>
}
<button class="btn btn-default" @onclick="@OnCloseButtonClick">@CloseButtonText</button>
<button class="btn btn-secondary" @onclick="@OnCloseButtonClick">@CloseButtonText</button>
</div>
</div>
</form>
Expand Down
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Pages/Account/Login.razor
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Log in</button>
<button type="button" class="btn btn-default" @onclick="@OnDemoSubmitAsync">Login with <strong>demo</strong> user</button>
<button type="button" class="btn btn-secondary" @onclick="@OnDemoSubmitAsync">Login with <strong>demo</strong> user</button>
</div>
<div class="form-group">
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Pages/Search.razor
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="col-sm-1 col-xs-8">
<div class="form-group">
<button type="submit" class="btn btn-default">
<button type="submit" class="btn btn-secondary">
<Icon Identifier="search" />
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Pages/User/ChangePassword.razor
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<label for="ConfirmPassword">Confirm new password</label>
<input class="form-control" type="password" id="ConfirmPassword" @bind="@Confirm" />
</div>
<button type="submit" class="btn btn-default">Update password</button>
<button type="submit" class="btn btn-primary">Update password</button>
</form>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Pages/User/Profile.razor
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<label for="Email">Email</label>
<input class="form-control" autofocus type="email" id="Email" @bind="@Email" />
</div>
<button type="submit" class="btn btn-default">Save</button>
<button type="submit" class="btn btn-primary">Save</button>
</form>
</div>
</div>
Expand Down

0 comments on commit 20644db

Please sign in to comment.