refactor(editor): Change UI and monospace fonts (#13839)

This commit is contained in:
Tuukka Kantola
2025-03-17 21:13:57 +01:00
committed by GitHub
parent bda068880e
commit eb91111ddf
83 changed files with 153 additions and 146 deletions

View File

@@ -103,7 +103,7 @@ const nodeName = (node: IVersionNode): string => {
}
.name {
font-weight: 600;
font-weight: var(--font-weight-bold);
font-size: 16px;
line-height: 18px;
color: $version-card-name-text-color;
@@ -117,7 +117,7 @@ const nodeName = (node: IVersionNode): string => {
.description {
font-size: 14px;
font-weight: 400;
font-weight: var(--font-weight-regular);
line-height: 19px;
color: $version-card-description-text-color;
}
@@ -125,7 +125,7 @@ const nodeName = (node: IVersionNode): string => {
.release-date {
font-size: 12px;
line-height: 18px;
font-weight: 400;
font-weight: var(--font-weight-regular);
color: $version-card-release-date-text-color;
}