Compare commits

...

3 Commits

Author SHA1 Message Date
Halfdan 09ab4dbeb2 Set language on the html element depending on which language is currently selected
continuous-integration/drone/push Build is passing Details
2022-11-21 15:13:42 +01:00
Halfdan 12961afd3d Adjusting size of logo and margins in header in mobile view 2022-11-21 15:04:10 +01:00
Halfdan fdad5adb80 Bumping the line height on page title a bit 2022-11-21 14:52:37 +01:00
2 changed files with 7 additions and 2 deletions

View File

@ -85,6 +85,7 @@ h1, h2, h3, h4, h5, h6 {
main h1 { main h1 {
font-size : 3rem; font-size : 3rem;
margin : 0 0 2rem 0; margin : 0 0 2rem 0;
line-height : 4rem;
} }
main h2 { main h2 {
@ -212,7 +213,11 @@ aside header a img {
flex-direction : row; flex-direction : row;
justify-content : space-between; justify-content : space-between;
align-items : center; align-items : center;
margin : calc(var(--base-grid) / 2) var(--base-grid); margin : var(--base-grid);
}
aside header a img {
height : 120px;
} }
aside nav { aside nav {

View File

@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="{{ .Language }}">
{{ partial "head.html" . }} {{ partial "head.html" . }}
<body> <body>
<aside> <aside>