Skip to content

Commit

Permalink
fix: comments from PR
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanRodrickson committed Apr 23, 2020
1 parent 04b81a1 commit af955d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions src/components/presets/adobe.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const code = (
>
<Box
css={`
border: 10px solid;
border-image-source: linear-gradient(
to right,
rgb(247, 102, 152) 0%,
Expand All @@ -24,7 +23,8 @@ const code = (
border-image-slice: 1;
`}
sx={{
bg: 'white',
border: '10px solid',
bg: `${query.bg}`,
padding: '30px'
}}
>
Expand All @@ -44,10 +44,10 @@ const code = (
background:
'linear-gradient(to right, rgb(247, 102, 152) 0%, rgb(234, 64, 123) 29%, rgb(101, 78, 163) 100%);',
lineHeight: 1.4,
fontWeight: '900',
fontWeight: 'bold',
fontFamily: 'Merriweather',
maxWidth: '36rem',
bg: 'white'
bg: `${query.bg}`
}}
children={query.title}
/>
Expand All @@ -63,7 +63,8 @@ const code = (
)

const query = {
title: 'Craft quality editorial flows in Premier Pro'
title: 'Craft quality editorial flows in Premier Pro',
bg: 'black'
}

export default { name: 'adobe', code, query }
4 changes: 2 additions & 2 deletions src/components/presets/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import article from './article'
import adobe from './adobe'
import bytesandhumans from './bytesandhumans'
import fauna from './fauna'
import microlink from './microlink'
Expand All @@ -9,10 +10,10 @@ import simple from './simple'
import swyxdotio from './swyxdotio'
import thePracticalDev from './thepracticaldev'
import vercell from './vercell'
import adobe from './adobe'

export default {
article,
adobe,
bytesandhumans,
fauna,
microlink,
Expand All @@ -22,6 +23,5 @@ export default {
simple,
swyxdotio,
thePracticalDev,
adobe,
vercell
}

0 comments on commit af955d6

Please sign in to comment.