Created
February 9, 2020 18:29
-
-
Save FBosler/4164ec00874a748eea37042120ff5034 to your computer and use it in GitHub Desktop.
Nav/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 StyledNav = 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-bottom: 2px solid lightgrey; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment