Skip to content

Commit 888c3a2

Browse files
removed unwanted css
Signed-off-by: Rajesh-Nagarajan-11 <rajeshnagarajan36@gmail.com>
1 parent 37ef328 commit 888c3a2

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

src/sections/Solutions/manage-procedures.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ManageProceduresWrapper = styled.section`
1212
right: 50%;
1313
margin-left: -50vw;
1414
margin-right: -50vw;
15-
background: ${(props) => props.theme.blackToWhite || "transparent"};
15+
background: ${(props) => props.theme.blackToWhite };
1616
padding: 3rem 0;
1717
overflow: hidden;
1818
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
@@ -41,7 +41,7 @@ const Heading = styled.h2`
4141
font-size: 56px;
4242
line-height: 64px;
4343
letter-spacing: 0;
44-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
44+
color: ${({ theme }) => theme.whiteToBlack};
4545
margin: 0;
4646
text-align: center;
4747
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);

src/sections/Solutions/organize-deployments.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const CardTitle = styled.h2`
6565
font-weight: 600;
6666
font-size: 32px;
6767
line-height: 40px;
68-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
68+
color: ${({ theme }) => theme.whiteToBlack};
6969
margin: 0;
7070
`;
7171

@@ -82,7 +82,7 @@ const CardText = styled.li`
8282
font-weight: 400;
8383
font-size: 16px;
8484
line-height: 28px;
85-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
85+
color: ${({ theme }) => theme.whiteToBlack };
8686
margin: 0;
8787
list-style: disc;
8888
`;
@@ -136,7 +136,7 @@ const SmallCardText = styled.p`
136136
font-weight: 400;
137137
font-size: 16px;
138138
line-height: 28px;
139-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
139+
color: ${({ theme }) => theme.whiteToBlack};
140140
margin: 0;
141141
`;
142142

src/sections/Solutions/solutions-banner.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const BannerSectionWrapper = styled.section`
1616
display: flex;
1717
align-items: center;
1818
justify-content: center;
19-
background: ${(props) => props.theme.blackToWhite || "transparent"};
19+
background: ${(props) => props.theme.blackToWhite };
2020
padding: 3rem 2rem;
2121
min-height: 30rem;
2222
overflow: hidden;
@@ -127,7 +127,7 @@ const MainHeading = styled.h1`
127127
font-weight: 600;
128128
font-size: 64px;
129129
line-height: 1.1;
130-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
130+
color: ${({ theme }) => theme.whiteToBlack };
131131
margin: 0;
132132
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
133133
@@ -145,7 +145,7 @@ const SubHeading = styled.h2`
145145
line-height: 36px;
146146
letter-spacing: 0;
147147
vertical-align: middle;
148-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
148+
color: ${({ theme }) => theme.whiteToBlack };
149149
margin: 0;
150150
max-width: 500px;
151151
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);

src/sections/Solutions/solutions-issues.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const IssuesSectionWrapper = styled.section`
1212
1313
display: flex;
1414
justify-content: center;
15-
background: ${(props) => props.theme.blackToWhite || "transparent"};
15+
background: ${(props) => props.theme.blackToWhite };
1616
padding: 6rem 2rem;
1717
overflow: hidden;
1818
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
@@ -42,7 +42,7 @@ const IssuesHeading = styled.h2`
4242
font-size: 56px;
4343
line-height: 64px;
4444
letter-spacing: 0;
45-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
45+
color: ${({ theme }) => theme.whiteToBlack};
4646
margin: 0;
4747
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
4848
@@ -81,7 +81,7 @@ const IssuesText = styled.p`
8181
line-height: 28px;
8282
letter-spacing: 0;
8383
vertical-align: middle;
84-
color: ${({ theme }) => theme.whiteToBlack || "#ffffff"};
84+
color: ${({ theme }) => theme.whiteToBlack};
8585
margin: 0;
8686
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
8787

0 commit comments

Comments
 (0)