Skip to content

Commit

Permalink
fix(wizard): remove content padding in fluent theme
Browse files Browse the repository at this point in the history
  • Loading branch information
kikostadinov authored and Juveniel committed Sep 12, 2022
1 parent a6ca694 commit 85a8b1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/fluent/scss/wizard/_layout.scss
Expand Up @@ -46,7 +46,7 @@

.k-wizard-content {
padding-inline: var( --kendo-wizard-content-padding-x, #{$kendo-wizard-content-padding-x} );
padding-block: var( --kendo-wizard-content-padding-y, #{$kendo-wizard-content-padding-x} );
padding-block: var( --kendo-wizard-content-padding-y, #{$kendo-wizard-content-padding-y} );
box-sizing: border-box;
overflow-y: auto;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/fluent/scss/wizard/_variables.scss
Expand Up @@ -30,10 +30,10 @@ $kendo-wizard-steps-padding-y: map-get( $kendo-spacing, 3 ) !default;

/// Horizontal padding of the wizard content.
/// @group wizard
$kendo-wizard-content-padding-x: map-get( $kendo-spacing, 3 ) !default;
$kendo-wizard-content-padding-x: 0px !default;
/// Vertical padding of the wizard content.
/// @group wizard
$kendo-wizard-content-padding-y: map-get( $kendo-spacing, 3 ) !default;
$kendo-wizard-content-padding-y: 0px !default;
/// Text color of the wizard content.
/// @group wizard
$kendo-wizard-content-text: var( --kendo-component-text, initial ) !default;
Expand Down

0 comments on commit 85a8b1f

Please sign in to comment.