Skip to content

Commit

Permalink
chore(data-warehouse): update font to mono font (#24718)
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE authored Aug 30, 2024
1 parent a165af7 commit c3e907c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/lib/components/DatabaseTableTree/TreeRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function TreeRow({ item }: TreeRowProps): JSX.Element {
size="xsmall"
fullWidth
icon={item.icon ? <>{item.icon}</> : null}
className="font-normal"
className="font-mono"
>
<span className="flex-1 flex justify-between">
<span className="truncate">{item.name}</span>
Expand All @@ -51,7 +51,7 @@ export function TreeTableRow({ item, onClick, selected }: TreeTableRowProps): JS
<li>
<LemonButton
size="xsmall"
className="font-normal"
className="font-mono"
fullWidth
onClick={_onClick}
active={selected}
Expand Down Expand Up @@ -86,7 +86,7 @@ export function TreeFolderRow({ item, depth, onClick, selectedRow, dropdownOverl
<li className="overflow-hidden">
<LemonButton
size="small"
className="font-normal"
className="font-mono"
fullWidth
onClick={_onClick}
sideAction={
Expand Down

0 comments on commit c3e907c

Please sign in to comment.