Fix bug with colors and dimensions misapplied
This commit is contained in:
parent
dcccfec1d2
commit
cfbedd3e59
4 changed files with 25 additions and 29 deletions
|
@ -81,7 +81,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'red',
|
||||
stroke: '#ff0000',
|
||||
fill: '#d3c9b7',
|
||||
},
|
||||
IsFlex: true,
|
||||
|
@ -96,7 +96,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'red',
|
||||
stroke: '#ff0000',
|
||||
fill: '#d3c9b7',
|
||||
},
|
||||
IsFlex: true,
|
||||
|
@ -115,8 +115,8 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'green',
|
||||
fill: 'white'
|
||||
stroke: '#00ff00',
|
||||
fill: '#ffffff'
|
||||
},
|
||||
Category: "Stuff",
|
||||
IsFlex: true,
|
||||
|
@ -258,8 +258,8 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'blue',
|
||||
fill: 'blue',
|
||||
stroke: '#0000ff',
|
||||
fill: '#0000ff',
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -270,8 +270,8 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'red',
|
||||
fill: 'red',
|
||||
stroke: '#ff0000',
|
||||
fill: '#ff0000',
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -370,7 +370,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Height: 200,
|
||||
Orientation: 0,
|
||||
Style: {
|
||||
stroke: 'black',
|
||||
stroke: '#000000',
|
||||
strokeWidth: 2,
|
||||
fillOpacity: 0
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue