HEX
Server: Apache
System: Linux srv10.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
User: cco26461 (4967)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //opt/alt/alt-nodejs10/root/lib/node_modules/npm/html/npm/docs/src/components/Sidebar.js
import React from 'react'
import styled from 'styled-components'
import DocLinks from './DocLinks'

const Container = styled.nav`
  border-right: 1px solid #86838333;
  padding: 30px;
  height: 100vh;
  display: none;
  width: 380px;
  position: sticky;
  overflow: scroll; 
  padding-bottom: 200px;
  top: 54px;
  background-color: ${(props) => props.theme.colors.white};

  @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
    display: block;
  } 
`

const Sidebar = () => {
  return (
    <Container className='sidebar'>
      <DocLinks />
    </Container>
  )
}

export default Sidebar