Skip to content

Commit 22f0aae

Browse files
committed
Fix footer link styles
1 parent 28922aa commit 22f0aae

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/components/Footer.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,14 @@ const ListItem = styled.li`
6262

6363
const FooterLink = styled(Link)`
6464
color: ${(props) => props.theme.colors.text200};
65+
&:after {
66+
color: ${(props) => props.theme.colors.text200};
67+
}
6568
&:hover {
6669
color: ${(props) => props.theme.colors.primary};
70+
&:after {
71+
color: ${(props) => props.theme.colors.primary};
72+
}
6773
}
6874
`
6975

src/components/MeetupList.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,14 @@ const Table = styled.div`
246246
`
247247

248248
const Item = styled(Link)`
249-
flex-direction: row;
249+
display: flex;
250250
justify-content: space-between;
251251
color: ${(props) => props.theme.colors.text} !important;
252252
box-shadow: 0 1px 1px ${(props) => props.theme.colors.tableItemBoxShadow};
253253
margin-bottom: 1px;
254254
padding: 1rem;
255255
width: 100%;
256256
color: #000;
257-
display: flex;
258257
259258
&:hover {
260259
border-radius: 4px;

0 commit comments

Comments
 (0)