aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment.style.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-02-19 00:00:43 +0200
committerHenry Jameson <me@hjkos.com>2024-02-19 00:00:43 +0200
commitf0bbb75df50eb7df91cbb172f2b1ff4a5a4d5310 (patch)
tree5fc55101c297c1aadc2851752f519f7c9dd4aeb8 /src/components/attachment.style.js
parent13a289ac74206ada74c329b721584b810ef1b9ef (diff)
properly sort, properly do icon colors, some initial attachment buttons work
Diffstat (limited to 'src/components/attachment.style.js')
-rw-r--r--src/components/attachment.style.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/attachment.style.js b/src/components/attachment.style.js
new file mode 100644
index 00000000..b6c5da6e
--- /dev/null
+++ b/src/components/attachment.style.js
@@ -0,0 +1,23 @@
+export default {
+ name: 'Attachment',
+ selector: '.Attachment',
+ validInnerComponents: [
+ 'Border',
+ 'ButtonUnstyled'
+ ],
+ defaultRules: [
+ {
+ directives: {
+ roundness: 3
+ }
+ },
+ {
+ component: 'ButtonUnstyled',
+ parent: { component: 'Attachment' },
+ directives: {
+ background: '#FFFFFF',
+ opacity: 0.9
+ }
+ }
+ ]
+}