remove letter spacing in menu item

This commit is contained in:
2022-06-01 16:43:59 +02:00
parent f169e4417d
commit 17f23c6491
2 changed files with 8 additions and 2 deletions
+1 -2
View File
@@ -144,8 +144,7 @@ h5 {
}
.menu-item {
font-size: 16px !important;
letter-spacing: 5px;
margin-left: 3px;
margin-left: 12px;
}
footer {
+7
View File
@@ -24,5 +24,12 @@
Topic - Tag : <strong>{{ entry.topic_id }}</strong> - <strong>{{ entry.tag }}</strong>
{% endif %}
</p>
<script>
const anchors = document.querySelectorAll('a');
anchors.forEach((a) => {
a.setAttribute('target', '__blank');
a.setAttribute('rel', 'noopener noreferrer');
});
</script>
{% endblock %}