Skip to content

Commit 333c28f

Browse files
committed
Remove unnecessary quotes in Gradient component
1 parent 7de3163 commit 333c28f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/Snippets/GradientBtn.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const cssStyling = `
9090
width: 100%;
9191
height: 100%;
9292
transition: opacity 1.5s ease;
93-
background: 'linear-gradient(91.83deg, rgb(208, 60, 74) 2.26%, rgb(172, 74, 218) 95.81%)';
93+
background: linear-gradient(91.83deg, rgb(208, 60, 74) 2.26%, rgb(172, 74, 218) 95.81%);
9494
animation: 10s ease-in-out 0s infinite normal both running pulse;
9595
opacity: 0.75;
9696
}
@@ -126,7 +126,7 @@ const scssStyling = `
126126
width: 100%;
127127
height: 100%;
128128
transition: opacity 1.5s ease;
129-
background: 'linear-gradient(91.83deg, rgb(208, 60, 74) 2.26%, rgb(172, 74, 218) 95.81%)';
129+
background: linear-gradient(91.83deg, rgb(208, 60, 74) 2.26%, rgb(172, 74, 218) 95.81%);
130130
animation: 10s ease-in-out 0s infinite normal both running pulse;
131131
opacity: 0.75;
132132
}

0 commit comments

Comments
 (0)