Replies: 1 comment 1 reply
-
Create an asset: Edit the assets CSS with (put in the colors you want for light and dark mode respectively): html:not(.dark) [data-testid="content"] > div:nth-of-type(1) { background: #ccc; }
html.dark [data-testid="content"] > div:nth-of-type(1) { background: #000; } And compile. If you want the sidebar to fill the whole window height you can put in an additional min-height: html:not(.dark) [data-testid="content"] > div:nth-of-type(1) { background: #ccc; min-height: 100%; }
html.dark [data-testid="content"] > div:nth-of-type(1) { background: #000; min-height: 100%; } |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
After upgrading to v4. my client complained that he hates the colour of the v4 nav left sidebar as it's the same colour as the right content side now, unlike v3. what's an easy way to change it? Can a setting be added to make this easier?
Beta Was this translation helpful? Give feedback.
All reactions