remove letter spacing in menu item
This commit is contained in:
@@ -144,8 +144,7 @@ h5 {
|
|||||||
}
|
}
|
||||||
.menu-item {
|
.menu-item {
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
letter-spacing: 5px;
|
margin-left: 12px;
|
||||||
margin-left: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|||||||
@@ -24,5 +24,12 @@
|
|||||||
Topic - Tag : <strong>{{ entry.topic_id }}</strong> - <strong>{{ entry.tag }}</strong>
|
Topic - Tag : <strong>{{ entry.topic_id }}</strong> - <strong>{{ entry.tag }}</strong>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
<script>
|
||||||
|
const anchors = document.querySelectorAll('a');
|
||||||
|
anchors.forEach((a) => {
|
||||||
|
a.setAttribute('target', '__blank');
|
||||||
|
a.setAttribute('rel', 'noopener noreferrer');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Reference in New Issue
Block a user