diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 50493429e..6e79d56a5 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -239,27 +239,27 @@ } .text-xl { - font-size: $fontSizeXl; + font-size: $fontSizeXl !important; } .text-lg { - font-size: $fontSizeLg; + font-size: $fontSizeLg !important; } .text-md { - font-size: $fontSizeMd; + font-size: $fontSizeMd !important; } .text-base { - font-size: $fontSizeBase; + font-size: $fontSizeBase !important; } .text-sm { - font-size: $fontSizeSm; + font-size: $fontSizeSm !important; } .text-xs { - font-size: $fontSizeXs; + font-size: $fontSizeXs !important; } .text-xxs { diff --git a/scss/components/_wizard.scss b/scss/components/_wizard.scss index 6b759d923..648c031ab 100644 --- a/scss/components/_wizard.scss +++ b/scss/components/_wizard.scss @@ -143,7 +143,7 @@ background-color: $Wizard-steps-bg; border-bottom: $Wizard-steps-borderWidth solid $borderColor; text-align: $Wizard-steps-textAlign; - height: $Wizard-steps-height; + @include clearfix(); ul { display: $Wizard-steps-ulDisplay; diff --git a/src/renderers/Wizard.tsx b/src/renderers/Wizard.tsx index dd9fc62ba..60b87a179 100644 --- a/src/renderers/Wizard.tsx +++ b/src/renderers/Wizard.tsx @@ -411,7 +411,7 @@ export default class Wizard extends React.Component { const currentStep = this.state.currentStep; return ( -
+
{Array.isArray(steps) && steps.length ? (
    {steps.map((step, key) => {