Skip to content

Commit

Permalink
UI: Update font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlesne committed Jul 13, 2023
1 parent 7f86331 commit 8809f07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/conversation-ui/src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ body {
}

h1 {
font-size: 1.5rem;
font-size: calc(var(--font-size) * 1.75);
}

h2 {
font-size: 1.25rem;
font-size: calc(var(--font-size) * 1.5);
}

h3 {
font-size: 1.125rem;
font-size: calc(var(--font-size) * 1.25);
}

strong,
Expand All @@ -136,7 +136,7 @@ body {
}

big {
font-size: 3rem;
font-size: calc(var(--font-size) * 2.25);
}

small {
Expand Down Expand Up @@ -210,9 +210,9 @@ body {
&,
> * {
// Disable line wrapping
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}

Expand Down Expand Up @@ -289,9 +289,9 @@ body {
opacity: 0.75;

// Disable line wrapping
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}

Expand Down

0 comments on commit 8809f07

Please sign in to comment.