Uname: Linux premium294.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.1.32 [ PHP INFO ] PHP os: Linux
Server Ip: 104.21.32.1
Your Ip: 216.73.216.223
User: mjbynoyq (1574) | Group: mjbynoyq (1570)
Safe Mode: OFF
Disable Function:
NONE

name : MobileSidebar.js
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
© 2025 XylotrechusZ