updatedlayout
All checks were successful
Build and Deploy Website / Build Website (push) Successful in 48s
Build and Deploy Website / Deploy Website (push) Has been skipped
Build and Deploy Website / Deploy Dev Website (push) Successful in 10s

This commit is contained in:
Samuel Philipp 2024-03-29 18:04:38 +01:00
parent 6f0e10b6e9
commit 065a8279f8
2 changed files with 9 additions and 3 deletions

View file

@ -8,7 +8,7 @@ eleventyNavigation:
icon: i-home
---
<div class="row py-5">
<div class="row py-lg-5">
<div class="col-12 col-lg-4 mb-4 mb-lg-0 fill-col-inner">
<div class="logo huge animated">
{% include "logo-animated.html" %}
@ -65,7 +65,7 @@ eleventyNavigation:
</div>
</div>
<div class="row justify-content-center py-5">
<div class="row justify-content-center py-lg-5">
<div class="col">
<h1 class="text-center">Tool-Übersicht</h1>
<p class="text-center"><a href="/{{locale}}/services">Alle Dienste anzeigen</a></p>

View file

@ -42,7 +42,13 @@ p {
.content {
flex: 1;
padding: 2%;
padding: 1.5rem 0;
}
@include media-breakpoint-up(lg) {
.content {
padding: 3rem 0;
}
}
.highlight {