Skip to content

Commit 5cfe829

Browse files
committed
lint
1 parent c5a965b commit 5cfe829

File tree

6 files changed

+48
-33
lines changed

6 files changed

+48
-33
lines changed

apps/web/components/article-with-multiple-authors/inline-styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
Section,
99
Text,
1010
} from '@react-email/components';
11-
import { Layout } from '../_components/layout';
1211
import { Fragment } from 'react/jsx-runtime';
12+
import { Layout } from '../_components/layout';
1313

1414
export const component = (
1515
<Section>

apps/web/components/article-with-multiple-authors/tailwind.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ export const component = (
4444
width={48}
4545
/>
4646
</Column>
47-
<Column width="100%" className="pl-[18px] w-full" align="left" valign="top">
47+
<Column
48+
width="100%"
49+
className="pl-[18px] w-full"
50+
align="left"
51+
valign="top"
52+
>
4853
<Heading
4954
as="h3"
5055
className="m-0 font-medium text-[14px] text-gray-900 leading-[20px]"

apps/web/components/header-and-numbered-list-items/inline-styles.tsx

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Column, Hr, Row, Section, Text } from "@react-email/components";
2-
import { Fragment } from "react/jsx-runtime";
3-
import { Layout } from "../_components/layout";
1+
import { Column, Hr, Row, Section, Text } from '@react-email/components';
2+
import { Fragment } from 'react/jsx-runtime';
3+
import { Layout } from '../_components/layout';
44

55
export const component = (
66
<Section style={{ marginTop: 16 }}>
@@ -11,8 +11,8 @@ export const component = (
1111
margin: 0,
1212
fontWeight: 600,
1313
fontSize: 24,
14-
color: "rgb(17,24,39)",
15-
lineHeight: "32px",
14+
color: 'rgb(17,24,39)',
15+
lineHeight: '32px',
1616
}}
1717
>
1818
Functional Style
@@ -21,8 +21,8 @@ export const component = (
2121
style={{
2222
marginTop: 8,
2323
fontSize: 16,
24-
color: "rgb(107,114,128)",
25-
lineHeight: "24px",
24+
color: 'rgb(107,114,128)',
25+
lineHeight: '24px',
2626
}}
2727
>
2828
Combine practicality and style effortlessly with our furniture,
@@ -32,32 +32,32 @@ export const component = (
3232
</Section>
3333
{[
3434
{
35-
title: "Vesatile Comfort",
35+
title: 'Vesatile Comfort',
3636
description:
37-
"Experience ultimate comfort and versatility with our furniture collection, designed to adapt to your ever-changing needs.",
37+
'Experience ultimate comfort and versatility with our furniture collection, designed to adapt to your ever-changing needs.',
3838
},
3939
{
40-
title: "Luxurious Retreat",
40+
title: 'Luxurious Retreat',
4141
description:
42-
"Transform your space into a haven of relaxation with our indulgent furniture collection.",
42+
'Transform your space into a haven of relaxation with our indulgent furniture collection.',
4343
},
4444
{
45-
title: "Unleash Creativity",
45+
title: 'Unleash Creativity',
4646
description:
47-
"Unleash your inner designer with our customizable furniture options, allowing you to create a space that reflects your unique vision",
47+
'Unleash your inner designer with our customizable furniture options, allowing you to create a space that reflects your unique vision',
4848
},
4949
{
50-
title: "Elevate Outdoor Living",
50+
title: 'Elevate Outdoor Living',
5151
description:
52-
"Take your outdoor space to new heights with our premium outdoor furniture, designed to elevate your alfresco experience.",
52+
'Take your outdoor space to new heights with our premium outdoor furniture, designed to elevate your alfresco experience.',
5353
},
5454
].map((feature, index) => (
5555
<Fragment key={feature.title}>
5656
<Hr
5757
style={{
58-
border: "1px solid rgb(209, 213, 219)",
58+
border: '1px solid rgb(209, 213, 219)',
5959
margin: 0,
60-
width: "100%",
60+
width: '100%',
6161
}}
6262
/>
6363
<Section
@@ -82,9 +82,9 @@ export const component = (
8282
align="center"
8383
height="40"
8484
style={{
85-
backgroundColor: "rgb(199, 210, 254)",
86-
borderRadius: "9999px",
87-
color: "rgb(79, 70, 229)",
85+
backgroundColor: 'rgb(199, 210, 254)',
86+
borderRadius: '9999px',
87+
color: 'rgb(79, 70, 229)',
8888
fontWeight: 600,
8989
height: 40,
9090
padding: 0,
@@ -97,14 +97,14 @@ export const component = (
9797
</Column>
9898
</Row>
9999
</Column>
100-
<Column width="100%" style={{ width: "100%" }}>
100+
<Column width="100%" style={{ width: '100%' }}>
101101
<Text
102102
style={{
103103
margin: 0,
104104
fontWeight: 600,
105105
fontSize: 20,
106-
lineHeight: "28px",
107-
color: "rgb(17, 24, 39)",
106+
lineHeight: '28px',
107+
color: 'rgb(17, 24, 39)',
108108
}}
109109
>
110110
{feature.title}
@@ -115,8 +115,8 @@ export const component = (
115115
fontWeight: 600,
116116
paddingTop: 8,
117117
fontSize: 16,
118-
lineHeight: "24px",
119-
color: "rgb(107, 114, 128)",
118+
lineHeight: '24px',
119+
color: 'rgb(107, 114, 128)',
120120
}}
121121
>
122122
{feature.description}

apps/web/components/header-and-numbered-list-items/tailwind.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ export const component = (
4141
<Hr className="!border-gray-300 m-0 w-full border border-solid" />
4242
<Section className="py-[24px]">
4343
<Row>
44-
<Column width="48" height="40" className="w-[40px] h-[40px] pr-[8px]" valign="baseline">
44+
<Column
45+
width="48"
46+
height="40"
47+
className="w-[40px] h-[40px] pr-[8px]"
48+
valign="baseline"
49+
>
4550
<Row width="40" align="left">
4651
<Column
4752
align="center"

apps/web/components/list-with-image-on-left/tailwind.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ export const component = (
7272
/>
7373
</Column>
7474
<Column width="60%" className="w-3/5 pr-[24px]">
75-
<Row width="24" className="w-[24px] h-[24px] mb-[18px]" align={undefined}>
75+
<Row
76+
width="24"
77+
className="w-[24px] h-[24px] mb-[18px]"
78+
align={undefined}
79+
>
7680
<Column
7781
width="24"
7882
height="24"

apps/web/components/simple-rating-survey/inline-styles.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@ export const component = (
8686
</Column>
8787
</Row>
8888
</Section>
89-
<Section style={{ marginTop: '12px', marginBottom: '24px' }} align="center">
90-
<Row
91-
width={undefined}
92-
>
89+
<Section
90+
style={{ marginTop: '12px', marginBottom: '24px' }}
91+
align="center"
92+
>
93+
<Row width={undefined}>
9394
{Array.from({ length: 5 }).map((_, i) => (
9495
<Column
9596
key={i}

0 commit comments

Comments
 (0)