File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ const Card = styled.div`
43
43
& : first-child ,
44
44
& : last-child {
45
45
margin : 1.5rem 0.5rem 0 0.5rem ;
46
+ ${ props => ( props . $cardType === 'blog' ? Blog : '' ) }
46
47
}
47
48
` ) }
48
49
@@ -62,6 +63,7 @@ const Title = styled.h2`
62
63
63
64
${ m . tablet ( css `
64
65
font-size : 2.25rem ;
66
+ ${ props => ( props . $cardType === 'our-goals' ? AboutUsTitle : '' ) }
65
67
` ) }
66
68
67
69
//check props for button variations
@@ -112,6 +114,10 @@ const TagContainer = styled.div`
112
114
const AboutUs = css `
113
115
background-color : ${ $primaryAccentColor } ;
114
116
max-height : 35rem ;
117
+
118
+ ${ m . desktop ( css `
119
+ max-height : 37rem ;
120
+ ` ) }
115
121
` ;
116
122
117
123
const AboutUsTitle = css `
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const Row = styled.div`
15
15
` ;
16
16
17
17
const AlignLeft = css `
18
- justify-content : left;
18
+ justify-content : left !important ;
19
19
` ;
20
20
21
21
export default { Row } ;
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ const OurProcessInnerImageWrapper = styled(InnerImageWrapper)`
108
108
109
109
//media query mixins
110
110
${ m . desktop ( css `
111
- height : height: 12rem ;
111
+ height : 12rem ;
112
112
` ) }
113
113
` ;
114
114
You can’t perform that action at this time.
0 commit comments