Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
zanivan committed Feb 27, 2024
1 parent 5d1283c commit 365fec1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default function Features() {
{items.map(({ icon, title, description }, index) => (
<Card
key={index}
variant='outlined'
variant="outlined"
component={Button}
onClick={() => handleItemClick(index)}
sx={{
Expand Down Expand Up @@ -196,7 +196,7 @@ export default function Features() {
>
{icon}
</Box>
<Box sx={{textTransform:'none'}}>
<Box sx={{ textTransform: 'none' }}>
<Typography
color="text.primary"
variant="body2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function Hero() {
backgroundImage:
theme.palette.mode === 'light'
? 'linear-gradient(180deg, #CEE5FD, #FFF)'
: `linear-gradient(#02294F, ${alpha('#090E10',0.0)})`,
: `linear-gradient(#02294F, ${alpha('#090E10', 0.0)})`,
backgroundSize: '100% 20%',
backgroundRepeat: 'no-repeat',
})}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ export default function Pricing() {
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
color:
tier.title === 'Professional' ? 'grey.100' : '',
color: tier.title === 'Professional' ? 'grey.100' : '',
}}
>
<Typography component="h3" variant="h6">
Expand Down Expand Up @@ -145,10 +144,7 @@ export default function Pricing() {
sx={{
display: 'flex',
alignItems: 'baseline',
color:
tier.title === 'Professional'
? 'grey.50'
: undefined,
color: tier.title === 'Professional' ? 'grey.50' : undefined,
}}
>
<Typography component="h3" variant="h2">
Expand Down Expand Up @@ -189,9 +185,7 @@ export default function Pricing() {
variant="subtitle2"
sx={{
color:
tier.title === 'Professional'
? 'grey.200'
: undefined,
tier.title === 'Professional' ? 'grey.200' : undefined,
}}
>
{line}
Expand Down

0 comments on commit 365fec1

Please sign in to comment.