Skip to content

Commit

Permalink
formatted styles
Browse files Browse the repository at this point in the history
Signed-off-by: SHRAVANI KAWARE <[email protected]>
  • Loading branch information
ShravaniAK committed Aug 13, 2023
1 parent 86d38a6 commit 908627f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/sections/Company/About/about.style.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import styled from "styled-components";


const AboutSectionWrapper = styled.section`
.About-projects-mobile{
Expand Down Expand Up @@ -57,7 +56,7 @@ const AboutSectionWrapper = styled.section`
}
.about-text.text-two {
color: ${props => props.theme.sideTextColor};
color: ${(props) => props.theme.sideTextColor};
font-weight: 400;
margin-bottom: 28px;
}
Expand All @@ -71,7 +70,7 @@ const AboutSectionWrapper = styled.section`
svg {
.cncf-stacked-color_svg__st0 {
fill: ${props => props.theme.whiteToGreen3C494F};
fill: ${(props) => props.theme.whiteToGreen3C494F};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
}
Expand All @@ -81,7 +80,7 @@ const AboutSectionWrapper = styled.section`
svg {
.cncf-stacked-color_svg__st0 {
fill: ${props => props.theme.whiteToGreen3C494F};
fill: ${(props) => props.theme.whiteToGreen3C494F};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
}
Expand Down Expand Up @@ -116,13 +115,13 @@ const AboutSectionWrapper = styled.section`
margin-top: 4rem;
margin-bottom: 0rem;
font-family:"Qanelas Soft";
color: ${props => props.theme.whiteToBlack};
color: ${(props) => props.theme.whiteToBlack};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
h4{
margin-bottom: 1.7vw;
font-family:"Qanelas Soft";
color: ${props => props.theme.whiteSevenToBlackSeven};
color: ${(props) => props.theme.whiteSevenToBlackSeven};
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
}
Expand Down Expand Up @@ -156,11 +155,11 @@ const AboutSectionWrapper = styled.section`
}
.section-title{
#contact{
background: ${props => props.theme.highlightColor};
background: ${(props) => props.theme.highlightColor};
&:hover {
background: ${props => props.theme.highlightLightColor};
box-shadow: ${props => props.theme.whiteFourToBlackFour} 0px 2px 10px;
background: ${(props) => props.theme.highlightLightColor};
box-shadow: ${(props) => props.theme.whiteFourToBlackFour} 0px 2px 10px;
}
}
}
Expand Down

0 comments on commit 908627f

Please sign in to comment.