diff --git a/LandingPage/src/components/github.tsx b/LandingPage/src/components/github.tsx index a1a33ff..2c1e153 100644 --- a/LandingPage/src/components/github.tsx +++ b/LandingPage/src/components/github.tsx @@ -1,17 +1,31 @@ -import styled from 'styled-components'; +import styled from "styled-components"; const Github = () => { return ( - + ); -} +}; const StyledWrapper = styled.div` .btn-github { @@ -30,19 +44,20 @@ const StyledWrapper = styled.div` line-height: 1rem; background-color: rgba(255, 255, 255, 0.19); - box-shadow: - inset 0 1px 0 0 rgba(255, 255, 255, 0.04), + box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.04); color: #fff; + + text-decoration: none; } .btn-github:hover { - box-shadow: - inset 0 1px 0 0 rgba(255, 255, 255, 0.08), + box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(252, 232, 3, 0.08); - color:rgb(152, 3, 252); + color: rgb(152, 3, 252); transform: translate(0, -0.25rem); background-color: rgba(0, 0, 0, 0.5); - }`; + } +`; export default Github;