fix(v2): fix debug plugin unscoped global css affecting all code blocks (#3405)

https://github.com/facebook/docusaurus/issues/3402
This commit is contained in:
Sébastien Lorber 2020-09-04 14:45:38 +02:00 committed by GitHub
parent e32bac88bb
commit f49d8baf2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,11 @@
min-height: 100vh; min-height: 100vh;
} }
.container code {
color: white;
background-color: #444950;
}
.nav { .nav {
position: fixed; position: fixed;
display: flex; display: flex;
@ -39,11 +44,6 @@
background-color: #292a2b; background-color: #292a2b;
} }
code {
color: white;
background-color: #444950;
}
.active { .active {
background-color: #363739; background-color: #363739;
} }