fix solid color highlight
This commit is contained in:
parent
482f353f4d
commit
5384d3b7a2
|
@ -27,7 +27,11 @@ const highlightStyle = (prefs) => {
|
||||||
}
|
}
|
||||||
} else if (type === 'solid') {
|
} else if (type === 'solid') {
|
||||||
return {
|
return {
|
||||||
backgroundColor: tintColor2,
|
backgroundImage: [
|
||||||
|
'repeating-linear-gradient(90deg,',
|
||||||
|
`${tintColor} ,`,
|
||||||
|
`${tintColor} 20px`
|
||||||
|
].join(' '),
|
||||||
...customProps
|
...customProps
|
||||||
}
|
}
|
||||||
} else if (type === 'side') {
|
} else if (type === 'side') {
|
||||||
|
|
Loading…
Reference in a new issue