Skip to content

Commit

Permalink
Link styling
Browse files Browse the repository at this point in the history
  • Loading branch information
majakomel committed Nov 27, 2023
1 parent a7dc53a commit ef8118e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ const GlobalStyle = createGlobalStyle`
height: 100%;
background-color: #ffffff;
}
a {
text-decoration: none;
color: ${(props) => props.theme.colors.blue6};
&:hover {
color: ${(props) => props.theme.colors.blue9};
}
}
/*
Sticky Footer fix
Based on: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
Expand All @@ -36,7 +42,6 @@ const GlobalStyle = createGlobalStyle`
flex-direction: column;
min-height: 100vh;
}
.content {
flex: 1 0 auto;
}
Expand Down

0 comments on commit ef8118e

Please sign in to comment.