aboutsummaryrefslogtreecommitdiff
path: root/src/components/avatar.style.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-02-12 19:58:42 +0200
committerHenry Jameson <me@hjkos.com>2024-02-12 19:58:42 +0200
commit17b25ef0e0eb261fbfd09be740a1cd8c0e3ad88b (patch)
treed9db106ba61aa147948ab01a95b47c29fa7fa065 /src/components/avatar.style.js
parent709ce1611a557fdeb3c5f34ed3ba8cd62ead89f2 (diff)
avatar shadows
Diffstat (limited to 'src/components/avatar.style.js')
-rw-r--r--src/components/avatar.style.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/avatar.style.js b/src/components/avatar.style.js
new file mode 100644
index 00000000..2262fd03
--- /dev/null
+++ b/src/components/avatar.style.js
@@ -0,0 +1,20 @@
+export default {
+ name: 'Avatar',
+ selector: '.Avatar',
+ defaultRules: [
+ {
+ directives: {
+ background: '--bg',
+ opacity: 0,
+ shadow: [{
+ x: 0,
+ y: 1,
+ blur: 8,
+ spread: 0,
+ color: '#000000',
+ alpha: 0.7
+ }]
+ }
+ }
+ ]
+}