Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions assets/css/compiled/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3165,6 +3165,11 @@ code {
padding-bottom: 2.5rem;
}

.sm\:py-6 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}

.sm\:pb-10 {
padding-bottom: 2.5rem;
}
Expand Down
4 changes: 2 additions & 2 deletions config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ fingerprintAlgorithm = "sha256"

[header]
layout = "hybrid" # valid options: basic, hamburger, hybrid, custom
logo = "img/logo-nl.png"
logo_en = "img/logo-en.png"
logo = "img/twc-nederland-animated.svg"
logo_en = "img/twc-thenetherlands-animated.svg"
# logoDark = "img/dark-logo.jpg"
showTitle = false

Expand Down
2 changes: 1 addition & 1 deletion layouts/_partials/header/basic.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<header class="py-6 font-semibold text-neutral-900 sm:py-10 print:hidden">
<header class="py-6 font-semibold text-neutral-900 sm:py-6 print:hidden">
<nav class="mx-auto flex max-w-[95rem] items-start justify-between sm:items-center">
{{/* Site logo/title */}}
<div class="flex flex-row items-center">
Expand Down
8 changes: 4 additions & 4 deletions layouts/_partials/logo.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
<!-- prettier-ignore-attribute -->
<img
src="{{ $logo.RelPermalink }}"
width="{{ div $logo.Width 2 }}"
height="{{ div $logo.Height 2 }}"
width="150"
height="150"
class="max-h-[10rem] max-w-[10rem] object-scale-down object-left
{{ if $logo_dark }}hidden{{ end }}"
alt="{{ .Site.Title }}"
/>
{{- if $logo_dark }}
<img
src="{{ $logo_dark.RelPermalink }}"
width="{{ div $logo_dark.Width 2 }}"
height="{{ div $logo_dark.Height 2 }}"
width="150"
height="150"
class="max-h-[10rem] max-w-[10rem] object-scale-down object-left"
alt="{{ .Site.Title }}"
/>
Expand Down