aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2024-09-23 21:33:19 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2024-09-23 21:33:19 +0000
commitcf24e3009512ab4b86a600837f255fe86b9a5b0d (patch)
treea395464f27b8e4550f2805be93421ef02b92938b /src/components
parenta8092de63808ff1445636f07e11f3602774f1438 (diff)
parent7a7ed917b369c44b62edde52c01ef615f476ed47 (diff)
Merge branch 'fix-shadows-everywhere' into 'develop'
add 'none' keyword to PISS shadow definiton that equals empty array See merge request pleroma/pleroma-fe!1946
Diffstat (limited to 'src/components')
-rw-r--r--src/components/button_unstyled.style.js3
-rw-r--r--src/components/panel_header.style.js3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/button_unstyled.style.js b/src/components/button_unstyled.style.js
index 435f9cc6..65b5c57b 100644
--- a/src/components/button_unstyled.style.js
+++ b/src/components/button_unstyled.style.js
@@ -16,7 +16,8 @@ export default {
{
directives: {
background: '#ffffff',
- opacity: 0
+ opacity: 0,
+ shadow: []
}
},
{
diff --git a/src/components/panel_header.style.js b/src/components/panel_header.style.js
index 010e42cd..32464bc5 100644
--- a/src/components/panel_header.style.js
+++ b/src/components/panel_header.style.js
@@ -16,7 +16,8 @@ export default {
component: 'PanelHeader',
directives: {
backgroundNoCssColor: 'yes',
- background: '--fg'
+ background: '--fg',
+ shadow: []
}
}
]