aboutsummaryrefslogtreecommitdiff
path: root/ext/data
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-08-31 21:08:30 -0400
committerGitHub <noreply@github.com>2021-08-31 21:08:30 -0400
commit02194fcb9f5dfd61482b6d3814e395a1225c8a9b (patch)
treecf9db705bdae5517d9a62141a0b0a0f5494178bf /ext/data
parentce1a862df41691da1ee0c0d86b2fdb16472f316b (diff)
Add support for structured content margins (#1920)
Diffstat (limited to 'ext/data')
-rw-r--r--ext/data/schemas/dictionary-term-bank-v3-schema.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/data/schemas/dictionary-term-bank-v3-schema.json b/ext/data/schemas/dictionary-term-bank-v3-schema.json
index af4494ff..abb4e58f 100644
--- a/ext/data/schemas/dictionary-term-bank-v3-schema.json
+++ b/ext/data/schemas/dictionary-term-bank-v3-schema.json
@@ -215,6 +215,22 @@
"type": "string",
"enum": ["baseline", "sub", "super", "text-top", "text-bottom", "middle", "top", "bottom"],
"default": "baseline"
+ },
+ "marginTop": {
+ "type": "number",
+ "default": 0
+ },
+ "marginLeft": {
+ "type": "number",
+ "default": 0
+ },
+ "marginRight": {
+ "type": "number",
+ "default": 0
+ },
+ "marginBottom": {
+ "type": "number",
+ "default": 0
}
}
}