Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ui/src/components/badge/badge.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}

.badge--monospace {
@apply font-mono;
font-family: var(--font-mono);
}

.badge--square {
Expand Down
6 changes: 4 additions & 2 deletions packages/ui/src/components/code-block/code-block.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@

.content {
@apply bg-card-background border-t-border border-t;
@apply font-mono text-xs;
@apply text-xs;
@apply flex-1;
@apply flex flex-col;
@apply overflow-scroll;
@apply min-w-0;
font-family: var(--font-mono);
}

.neutral {
Expand Down Expand Up @@ -65,7 +66,8 @@

.code-label-text {
@apply text-text-secondary;
@apply font-mono text-xs;
@apply text-xs;
font-family: var(--font-mono);
}

.pre {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

.content {
@apply block w-full overflow-y-clip;
@apply font-mono;
@apply px-3 py-2;
font-family: var(--font-mono);
}

.actions {
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/theme/theme-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
@theme inline {
/* FONT FAMILY */
--font-sans: 'TWK Lausanne', 'Inter', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;

/* FONT SIZE */
--text-xxs: 0.625rem;
Expand Down
4 changes: 1 addition & 3 deletions packages/ui/src/theme/theme-preflight-global.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@
html kbd,
html samp,
html pre {
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
monospace;
font-family: var(--font-mono), monospace;
font-size: 1em;
}

Expand Down
4 changes: 1 addition & 3 deletions packages/ui/src/theme/theme-preflight-scoped.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@
:global(#equality-theme-provider-root) kbd,
:global(#equality-theme-provider-root) samp,
:global(#equality-theme-provider-root) pre {
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
monospace;
font-family: var(--font-mono), monospace;
font-size: 1em;
}

Expand Down
Loading