Twenty Twenty-Three: Fix incorrect gradient values in Aubergine theme.
This changeset removes two unwanted semicolons from the gradients declaration in `aubergine.json`, fixing two gradients that were showing a checkerboard pattern instead of the gradient, and a console error for each of them. Props wildworks, sabernhardt. Fixes #57245. git-svn-id: https://develop.svn.wordpress.org/trunk@55041 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
45f3a01473
commit
521309b7e3
1 changed files with 2 additions and 2 deletions
|
@ -16,12 +16,12 @@
|
||||||
"slug": "base-secondary-base"
|
"slug": "base-secondary-base"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"gradient": "linear-gradient(90deg, var(--wp--preset--color--tertiary) 5.74%, var(--wp--preset--color--primary) 100%);",
|
"gradient": "linear-gradient(90deg, var(--wp--preset--color--tertiary) 5.74%, var(--wp--preset--color--primary) 100%)",
|
||||||
"name": "Tertiary to Primary",
|
"name": "Tertiary to Primary",
|
||||||
"slug": "tertiary-primary"
|
"slug": "tertiary-primary"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"gradient": "linear-gradient(90deg, var(--wp--preset--color--primary) 5.74%, var(--wp--preset--color--tertiary) 100%);",
|
"gradient": "linear-gradient(90deg, var(--wp--preset--color--primary) 5.74%, var(--wp--preset--color--tertiary) 100%)",
|
||||||
"name": "Primary to Tertiary",
|
"name": "Primary to Tertiary",
|
||||||
"slug": "primary-tertiary"
|
"slug": "primary-tertiary"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue