Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit ab1c977

Browse files
committed
make icon sizes consistent.
1 parent 42f81ca commit ab1c977

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/components/Arrow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const StyledArrow = styled.svg`
88
display: inline-block;
99
fill: ${colors.offWhite1};
1010
transition: all .2s;
11-
height: 4rem;
11+
height: 4.5rem;
1212
`
1313

1414
interface ArrrowProps {

src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ const StyledFooter = styled.footer`
6262
color: ${colors.link};
6363
6464
svg {
65-
fill: ${colors.link};
65+
fill: ${colors.text};
6666
}
6767
6868
.mail {
69-
stroke: ${colors.link};
69+
stroke: ${colors.text};
7070
}
7171
}
7272

src/components/careers/ExpandableJob.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const ExpandableJob = ({ title, intro, paragraphs, lists, textAfterTheLists, ren
8080
<StyledExpandableJob>
8181
<button onClick={toggleIsRendered}>
8282
<Arrow
83-
styles={{ transform: isRendered ? 'rotate(-90deg)' : 'rotate(90deg)', fill: isRendered ? colors.text : '' }}
83+
styles={{ transform: isRendered ? 'rotate(-90deg)' : 'rotate(90deg)' }}
8484
/>
8585
</button>
8686
<h3>{title}</h3>

src/components/docs/ReachOut.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ const StyledReachOut = styled.section`
3737
color: ${colors.link};
3838
3939
svg {
40-
fill: ${colors.link};
40+
fill: ${colors.text};
4141
}
4242
4343
.mail {
44-
stroke: ${colors.link};
44+
stroke: ${colors.text};
4545
}
4646
}
4747
}

0 commit comments

Comments
 (0)