mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-12-03 20:43:50 +01:00
docs: fix spacing on reference space
This commit is contained in:
parent
e6bf2a10ee
commit
39f671c1ef
@ -35,13 +35,8 @@
|
|||||||
<input type="hidden" id="category-names" value="{{ categories }}" />
|
<input type="hidden" id="category-names" value="{{ categories }}" />
|
||||||
<div class="command-container">
|
<div class="command-container">
|
||||||
<h3>Alphabetical</h3>
|
<h3>Alphabetical</h3>
|
||||||
<ul class="command-list">
|
<ul class="command-list">{% for section in sections_help %}
|
||||||
{% for section in sections_help %}
|
<li data-filtermode-force="all" data-category="{{ section.category }}" style="--cat-colour: {{ section.category_colour }};"><a href="#{{ section.slug }}"><code>{{ section.title }}</code></a></li>{% endfor %}</ul>
|
||||||
<li data-filtermode-force="all" data-category="{{ section.category }}" style="--cat-colour: {{ section.category_colour }};"><a href="#{{ section.slug }}">
|
|
||||||
<code>{{ section.title }}</code>
|
|
||||||
</a></li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -419,16 +419,23 @@ footer {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
word-wrap: anywhere;
|
word-wrap: anywhere;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.command-list > li {
|
||||||
|
margin: 0.25em 0;
|
||||||
}
|
}
|
||||||
.command-list > li > a {
|
.command-list > li > a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
.command-list.coloured code { background: var(--cat-colour); }
|
.command-list.coloured code { background: var(--cat-colour); }
|
||||||
.command-list code {
|
.command-list code {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0.5em 0;
|
/* margin: 0.5em 0; */
|
||||||
|
margin: 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filterable {
|
.filterable {
|
||||||
|
Loading…
Reference in New Issue
Block a user