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 { .header-item {
margin: auto; margin: auto;
margin-left: 2.5rem; margin-inline: 1rem;
color: inherit; color: inherit;
} }

View file

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