Fix even more float problems

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-02-25 19:26:01 +01:00
parent 0bfbc53048
commit 6ee40c0f7d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<div class="block block-{{ include.type }}
{% if include.float %}float float-{{ include.float }}{% elsif include.float == "clear" %}float-clear{% endif %}
{% if include.float == "clear" %}float-clear{% elsif include.float %}float float-{{ include.float }}{% endif %}
{% if include.align %}align-{{ include.align }}{% endif %}" style="
{% if include.width %}width: {{ include.width }};{% endif %}">
{{ include.content }}
+1
View File
@@ -42,6 +42,7 @@
}
.block.float + .block {
margin-top: 0em;
}
.block.float {
}