We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057b747 commit 8a8355bCopy full SHA for 8a8355b
webpage/src/getting-started/concept.md
@@ -1,14 +1,15 @@
1
# Concept
2
3
-<style scoped>
+<style>
4
/* Remove max-width for content so there is enough space for the Mermaid diagram */
5
- /* We need "scoped" or this will leak to all other pages! */
6
- /* We need "main" to be more specific than the default style */
7
- main .theme-default-content:not(.custom) {
8
- max-width: none;
+ /* This targets the VuePress content container on this page only using :has() */
+ body:has(.concept-page-marker) main.vp-page > div {
+ max-width: none !important;
9
}
10
</style>
11
+<div class="concept-page-marker" style="display: none;"></div>
12
+
13
```mermaid
14
graph TB
15
subgraph Your computer
0 commit comments