1

I have tried the following in section of index.html and it does nothing:

  <style>
  :root {
    --sidebar-width : 100rem;
  }
  </style>

This is with a vanilla usage of docsify.

Axis
  • 2,066
  • 2
  • 21
  • 40
mathtick
  • 6,487
  • 13
  • 56
  • 101

1 Answers1

0

Remove the <style> part and add your code to the theme.css

:root {
    --sidebar-width : 100rem;
  }
Axis
  • 2,066
  • 2
  • 21
  • 40