From 84f518e66978fdcb90f4695efa615e46d2a7f8f6 Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Sat, 3 Oct 2020 10:55:18 -0700 Subject: [PATCH] prettier format --- components/Carbon.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/components/Carbon.js b/components/Carbon.js index 3d2fa88..e3935d4 100644 --- a/components/Carbon.js +++ b/components/Carbon.js @@ -245,13 +245,15 @@ class Carbon extends React.PureComponent { } .container .bg { - ${this.props.config.backgroundMode === 'image' - ? `background: url(${backgroundImage}); + ${ + this.props.config.backgroundMode === 'image' + ? `background: url(${backgroundImage}); background-size: cover; background-repeat: no-repeat;` - : `background: ${this.props.config.backgroundColor || config.backgroundColor}; + : `background: ${this.props.config.backgroundColor || config.backgroundColor}; background-size: auto; - background-repeat: repeat;`} + background-repeat: repeat;` + } position: absolute; top: 0px; right: 0px; @@ -278,9 +280,11 @@ class Carbon extends React.PureComponent { position: relative; z-index: 1; border-radius: 5px; - ${config.dropShadow - ? `box-shadow: 0 ${config.dropShadowOffsetY} ${config.dropShadowBlurRadius} rgba(0, 0, 0, 0.55)` - : ''}; + ${ + config.dropShadow + ? `box-shadow: 0 ${config.dropShadowOffsetY} ${config.dropShadowBlurRadius} rgba(0, 0, 0, 0.55)` + : '' + }; } .container :global(.CodeMirror__container .CodeMirror) {