Skip to content

Commit 38bd21b

Browse files
committed
Update formatting on branding page.
1 parent f315a48 commit 38bd21b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Server/Components/ColorPicker.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div>
44
<div>Color Sample:</div>
5-
<div class="color-sample mb-4" style="background-color:@($"rgb({Red},{Green},{Blue})")"></div>
5+
<div class="color-sample mb-2" style="background-color:@($"rgb({Red},{Green},{Blue})")"></div>
66

77
<div>Red</div>
88
<input type="range" min="0" max="255" class="form-control red-picker" @bind="Red" />

Server/Pages/Branding.razor

+11-11
Original file line numberDiff line numberDiff line change
@@ -32,35 +32,35 @@ else
3232
<EditForm OnValidSubmit="HandleValidSubmit" Model="_inputModel">
3333
<DataAnnotationsValidator />
3434

35-
<div class="form-group mb-4">
36-
<label class="font-weight-bold">Product Name</label>
35+
<div class="form-group mb-5">
36+
<label class="text-info font-weight-bold">Product Name</label>
3737
<InputText class="form-control" @bind-Value="_inputModel.ProductName" />
3838
<ValidationMessage For="() => _inputModel.ProductName" />
3939
</div>
4040

4141
@if (!string.IsNullOrWhiteSpace(_base64Icon))
4242
{
4343
<div class="form-group mb-4">
44-
<label class="font-weight-bold">Current Icon</label>
44+
<label class="text-info font-weight-bold">Current Icon</label>
4545
<br />
4646
<img class="img-fluid" src="data:image/png;base64,@_base64Icon" />
4747
</div>
4848
}
4949

50-
<div class="form-group mb-4">
51-
<label class="font-weight-bold"></label>
50+
<div class="form-group mb-5">
51+
<label class="text-info font-weight-bold">New Icon</label>
5252
<InputFile type="file" accept="image/png" class="form-control" OnChange="IconUploadInputChanged" />
5353
</div>
54-
<div class="form-group mb-4">
55-
<label class="font-weight-bold">Title Foreground</label>
54+
<div class="form-group mb-5">
55+
<label class="text-info font-weight-bold">Title Foreground</label>
5656
<ColorPicker @bind-Color="_inputModel.TitleForegroundColor" />
5757
</div>
58-
<div class="form-group mb-4">
59-
<label class="font-weight-bold">Title Background</label>
58+
<div class="form-group mb-5">
59+
<label class="text-info font-weight-bold">Title Background</label>
6060
<ColorPicker @bind-Color="_inputModel.TitleBackgroundColor" />
6161
</div>
62-
<div class="form-group mb-2">
63-
<label class="font-weight-bold">Button Color</label>
62+
<div class="form-group mb-5">
63+
<label class="text-info font-weight-bold">Button Color</label>
6464
<ColorPicker @bind-Color="_inputModel.TitleButtonColor" />
6565
</div>
6666
<div class="form-group text-right">

0 commit comments

Comments
 (0)