Skip to content

Commit

Permalink
Fix wizard color (#205)
Browse files Browse the repository at this point in the history
* Fix toolbar color
  • Loading branch information
dxvladislavvolkov authored Nov 28, 2023
1 parent 43f8fe9 commit 326d441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/preview/wizard/wizard.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<dx-toolbar class="header" [items]="toolbarItems">
<dx-toolbar class="header dx-theme-background-color" [items]="toolbarItems">
</dx-toolbar>
<div class="flex-blocks {{theme}} {{themeSize}}">
<div class="left flex-block dx-card">
Expand All @@ -8,7 +8,7 @@
width="100%"
[height]="this.theme === 'generic' ? (this.themeSize === 'compact' ? 125 : 175) :247"
colCount="2"
labelMode="floating">
[labelMode]="this.theme === 'fluent' ? 'outside' : 'floating'">
<dxi-item dataField="FirstName" ></dxi-item>
<dxi-item dataField="Position" editorType="dxSelectBox" [editorOptions]="{ items: positions, value: '' }">
<dxi-validation-rule type="required" message="Position is required"></dxi-validation-rule>
Expand Down

0 comments on commit 326d441

Please sign in to comment.