Skip to content
Snippets Groups Projects
Commit 017fa60a authored by HJ's avatar HJ :fire:
Browse files

better default pleroma shadows, matches original borders more closely

parent de88cfb9
No related branches found
No related tags found
No related merge requests found
......@@ -260,34 +260,34 @@ const generateRadii = (input) => {
const generateShadows = (input) => {
const buttonInsetFakeBorders = [{
x: 0,
y: 101,
y: 1,
blur: 0,
spread: -100,
spread: 0,
color: '#FFFFFF',
alpha: 0.2,
inset: true
}, {
x: 0,
y: -101,
y: -1,
blur: 0,
spread: -100,
spread: 0,
color: '#000000',
alpha: 0.2,
inset: true
}]
const inputInsetFakeBorders = [{
x: 0,
y: 101,
y: 1,
blur: 0,
spread: -100,
spread: 0,
color: '#000000',
alpha: 0.2,
inset: true
}, {
x: 0,
y: -101,
y: -1,
blur: 0,
spread: -100,
spread: 0,
color: '#FFFFFF',
alpha: 0.3,
inset: true
......@@ -334,7 +334,7 @@ const generateShadows = (input) => {
color: '--faint',
alpha: 1
}, ...buttonInsetFakeBorders],
input: [{
input: [...inputInsetFakeBorders, {
x: 0,
y: 0,
blur: 2,
......@@ -342,7 +342,7 @@ const generateShadows = (input) => {
spread: 0,
color: '#000000',
alpha: 1
}, ...inputInsetFakeBorders],
}],
...(input.shadows || {})
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment