Fixed h1 margin on about page
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
Build Zola Website / build (pull_request) Successful in 24s

This commit is contained in:
Filip Rojek 2025-05-24 12:05:15 +02:00
parent 3ceaeeafda
commit 203b08d044
3 changed files with 3 additions and 4 deletions

View File

@ -3,8 +3,6 @@ title = "About"
template = "about.html"
+++
# About
I am an IT student at Charles University in Prague (Faculty of Education).
As a member of [Microlab](https://microlab.space), the university's hackerspace, I collaborate on various hardware and software projects. Additionally, I contribute to the open-source community as a package maintainer for [Void Linux](https://voidlinux.org).

View File

@ -2,9 +2,9 @@
h1 {
font-size: 2rem;
margin-bottom: 2rem;
}
h1,
h2 {
margin-top: 1rem;
margin-bottom: .5rem;

View File

@ -6,6 +6,7 @@
{% block content %}
<section class="about content">
{{ page.content | safe }}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
</section>
{% endblock content %}