We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30daf28 + d886314 commit 3a70326Copy full SHA for 3a70326
2 files changed
apps/web/components/gradient-editor.tsx
@@ -105,8 +105,8 @@ export default function GradientEditor() {
105
});
106
107
const {
108
- width: width,
109
- height: height,
+ width,
+ height,
110
innerPaddingX,
111
innerPaddingY,
112
pageName,
packages/ui/src/gradient-preview/gradient-preview.tsx
@@ -213,7 +213,7 @@ export const GradientPreview: React.FC<GradientPreviewProps> = ({
213
width: gradientWidth ? gradientWidth + "px" : "100%",
214
height: gradientHeight ? gradientHeight + "px" : "100%",
215
borderRadius: rounded ? "15px" : "0",
216
- filter: `blur(${blurAmount}px)`,
+ // filter: `blur(${blurAmount}px)`,
217
}}
218
src={customImage}
219
width={100}
0 commit comments