FIX inline margin from header button, FIX custom font import

This commit is contained in:
Hoernschen 2023-11-22 13:54:07 +01:00
parent f696b07527
commit e6257036b9
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
2 changed files with 12 additions and 12 deletions

View file

@ -57,7 +57,7 @@
.header-item {
margin: auto;
margin-left: 2.5rem;
margin-inline: 1rem;
color: inherit;
}

View file

@ -4,21 +4,21 @@ $font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubunt
{{ if .name }}
{{ if .url }}
@font-face {
font-family: {{ .name }};
src: url({{ .url }}) format( {{ .format | default "ttf" }} );
font-weight: 400;
font-style: normal;
}
{{ end }}
$font: {{ .name }} !important;
{{ end }}
{{ if .url }}
@font-face {
font-family: $font;
src: url({{ .url }}) format( {{ .format | default "ttf" }} );
font-weight: 400;
font-style: normal;
}
{{ end }}
{{ end }}
* {