diff options
Diffstat (limited to 'animism-align/frontend/app/constants.js')
| -rw-r--r-- | animism-align/frontend/app/constants.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/animism-align/frontend/app/constants.js b/animism-align/frontend/app/constants.js index db7034c..b4fb9c5 100644 --- a/animism-align/frontend/app/constants.js +++ b/animism-align/frontend/app/constants.js @@ -101,10 +101,16 @@ export const CURTAIN_COLOR_LOOKUP = CURTAIN_COLORS.reduce((a,b) => { }, {}) export const IMAGE_BACKGROUND_SIZE_OPTIONS = [ - { label: 'cover', name: 'cover' }, - { label: 'contain', name: 'contain' }, - { label: '90% width', name: '90% auto' }, - { label: '90% height', name: 'auto 90%' }, + { label: 'Cover', name: 'cover' }, + { label: 'Contain', name: 'contain' }, + { label: '90% Width', name: '90% auto' }, + { label: '90% Height', name: 'auto 90%' }, +] + +export const IMAGE_INLINE_SIZE_OPTIONS = [ + { label: 'Fullscreen', name: 'fullscreen' }, + { label: 'Wide', name: 'wide' }, + { label: 'Column width', name: 'column-width' }, ] export const DISPLAY_SIZE = 2000 |
