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

@@ -89,7 +89,7 @@ function onClick() {
.label {
width: max-content;
font-weight: var(--font-weight-bold);
font-weight: var(--font-weight-medium);
font-size: var(--font-size-m);
line-height: var(--font-line-height-xloose);
color: var(--color-text-dark);

View File

@@ -313,7 +313,7 @@ function onActivate() {
-webkit-line-clamp: 2;
overflow: hidden;
overflow-wrap: anywhere;
font-weight: var(--font-weight-bold);
font-weight: var(--font-weight-medium);
line-height: var(--font-line-height-compact);
}
@@ -326,7 +326,7 @@ function onActivate() {
overflow: hidden;
text-overflow: ellipsis;
line-height: var(--font-line-height-compact);
font-weight: 400;
font-weight: var(--font-weight-regular);
}
.statusIcons {

View File

@@ -104,7 +104,7 @@ const dirtiness = computed(() =>
display: flex;
align-items: center;
gap: var(--spacing-5xs);
font-weight: 600;
font-weight: var(--font-weight-bold);
}
.runData {