Created
February 10, 2020 06:48
-
-
Save FBosler/1045a6e1ecb2068f7ce4e504bcf4bcd6 to your computer and use it in GitHub Desktop.
Footer/styles.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Navbar } from "react-bootstrap"; | |
import styled from "styled-components"; | |
export const StyledFooter = styled(Navbar)` | |
background-color: white; | |
-webkit-box-shadow: 0 24px 38px 3px #f7f7f72e, 0 9px 46px 8px #ffffff2b, 0 11px 15px -7px #ffffff45; | |
box-shadow: 0 24px 38px 3px #f7f7f72e, 0 9px 46px 8px #ffffff2b, 0 11px 15px -7px #ffffff45; | |
border-top: 2px solid #114b74; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment