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 b63e566 commit 09a4eaeCopy full SHA for 09a4eae
docs-svelte-kit/src/app.css
@@ -84,6 +84,8 @@ h5 + h6 {
84
85
ul {
86
margin: 1rem 0;
87
+ --list-padding: 30px;
88
+ margin-left: var(--list-padding);
89
}
90
91
pre {
docs-svelte-kit/src/routes/+layout.svelte
@@ -76,4 +76,23 @@
76
margin: 0 auto;
77
box-sizing: border-box;
78
79
+
80
+ .main-content :global(:where(li)) {
81
+ margin: 0 0 0.5em;
82
+ line-height: 1.5;
83
+ position: relative;
+ }
+ .main-content :global(:where(ul li):before) {
+ --sk-back-5: #c2cdd6;
+ content: '';
+ background-color: var(--sk-back-5);
+ opacity: 0.7;
+ border-radius: 2px;
92
+ width: 6px;
93
+ height: 6px;
94
+ margin-top: 8px;
95
+ margin-left: -18px;
96
+ position: absolute;
97
98
</style>
0 commit comments