| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/node_modules/npm/docs/src/components/ |
Upload File : |
import React from 'react'
import styled from 'styled-components'
import DocLinks from './DocLinks'
import {} from '../components/Sidebar'
const MobileContainer = styled.div`
border-left: 1px solid #86838333;
border-bottom: 1px solid #86838333;
padding: 30px 30px 200px;
width: 340px;
display: block;
height: calc(100vh - 54px);
overflow: scroll;
position: fixed;
top: 54px;
right: 0px;
background-color: ${(props) => props.theme.colors.white};
z-index: 100;
@media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
display: none;
}
`
const MobileSidebar = () => {
return (
<MobileContainer flexDirection='column'>
<DocLinks />
</MobileContainer>
)
}
export default MobileSidebar