diff --git a/application/Espo/Resources/metadata/app/client.json b/application/Espo/Resources/metadata/app/client.json index 49ef76eb0c..fb6d988682 100644 --- a/application/Espo/Resources/metadata/app/client.json +++ b/application/Espo/Resources/metadata/app/client.json @@ -15,6 +15,14 @@ "noTimestamp": true, "crossorigin": true }, + { + "href": "client/fonts/inter/Inter-Medium.woff2", + "as": "font", + "type": "font/woff2", + "rel": "preload", + "noTimestamp": true, + "crossorigin": true + }, { "href": "client/fonts/inter/Inter-SemiBold.woff2", "as": "font", diff --git a/frontend/less/espo/custom.less b/frontend/less/espo/custom.less index 7eaabf0cab..0242e1fbff 100644 --- a/frontend/less/espo/custom.less +++ b/frontend/less/espo/custom.less @@ -158,6 +158,10 @@ img.image-preview { margin-bottom: var(--7px); font-size: var(--22px); font-weight: 400; + + a { + font-weight: 400; + } } @media screen and (max-width: @screen-xs-max) { @@ -2150,6 +2154,12 @@ textarea.auto-height { content: ""; display: block; } + + .breadcrumb-item { + a { + font-weight: 400; + } + } } .breadcrumb-separator { diff --git a/frontend/less/espo/elements/buttons.less b/frontend/less/espo/elements/buttons.less index e17aea5d9c..97e09ac226 100644 --- a/frontend/less/espo/elements/buttons.less +++ b/frontend/less/espo/elements/buttons.less @@ -22,6 +22,7 @@ .btn { height: var(--input-height-base); + font-weight: 500; } .btn-lg { @@ -407,7 +408,7 @@ a.btn { } } - font-weight: 400; + font-weight: 500; } .btn-link, .btn-default, .btn-text { diff --git a/frontend/less/espo/elements/type.less b/frontend/less/espo/elements/type.less index 705c956e8e..d65c05c00a 100644 --- a/frontend/less/espo/elements/type.less +++ b/frontend/less/espo/elements/type.less @@ -2,6 +2,10 @@ text-align: center; } +a { + font-weight: 500; +} + h1 { font-size: var(--30px); margin-top: var(--20px);