diff --git a/src/App.css b/src/App.css index cc8198ce..4303c63c 100644 --- a/src/App.css +++ b/src/App.css @@ -4,6 +4,7 @@ --recipe-select-height: 52px; --tab-height: 62px; --footer-height: 64px; + --description-height: 102px; } .app-container { diff --git a/src/components/GradientInput/index.tsx b/src/components/GradientInput/index.tsx index 588e19bf..dd0d34d1 100644 --- a/src/components/GradientInput/index.tsx +++ b/src/components/GradientInput/index.tsx @@ -16,7 +16,7 @@ interface GradientInputProps { }; const GradientInput = (props: GradientInputProps): JSX.Element => { - const { displayName, description, gradientOptions, defaultValue } = props; + const { displayName, gradientOptions, defaultValue } = props; const selectedRecipeId = useSelectedRecipeId(); const editRecipe = useEditRecipe(); const getCurrentValue = useGetCurrentValue(); @@ -55,7 +55,6 @@ const GradientInput = (props: GradientInputProps): JSX.Element => {
{displayName} - {description}